1
0

tmpnamestr.h 229 B

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