aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/bfc/file/tmpnamestr.h
blob: c18e5832311cf7f84300adb15eb73d28e52b63cd (plain) (blame)
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