1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef _TMPNAMESTR_H #define _TMPNAMESTR_H #include <bfc/string/StringW.h> class TmpNameStrW : public StringW { public: TmpNameStrW() { wchar_t tmp[WA_MAX_PATH]=L""; TMPNAM(tmp); setValue(tmp); } }; #endif