mirror of
https://github.com/darlinghq/darling-appkit.git
synced 2024-11-23 03:39:48 +00:00
11 lines
203 B
C
11 lines
203 B
C
#ifndef APPKIT_UTIL_H_
|
|
#define APPKIT_UTIL_H_
|
|
#include <Foundation/NSString.h>
|
|
#include <QString>
|
|
|
|
NSString* NSStringFromQString(const QString& str);
|
|
QString QStringFromNSString(NSString* str);
|
|
|
|
#endif
|
|
|