14 lines
211 B
C++
14 lines
211 B
C++
|
#ifndef OFEN_DEFINE
|
||
|
#define OFEN_DEFINE
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#ifdef UNICODE_OFSTR
|
||
|
using ofString = std::wstring;
|
||
|
#define ofT(text) L##text
|
||
|
#else
|
||
|
using ofString = std::string;
|
||
|
#define ofT(text) text
|
||
|
#endif
|
||
|
|
||
|
#endif
|