ofen/include/of_def.hpp

14 lines
211 B
C++
Raw Normal View History

#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