18 lines
320 B
C++
18 lines
320 B
C++
#ifndef __INC_ETERBASE_TEMPFILE_H__
|
|
#define __INC_ETERBASE_TEMPFILE_H__
|
|
|
|
#include "FileBase.h"
|
|
|
|
class CTempFile : public CFileBase
|
|
{
|
|
public:
|
|
CTempFile(const char * c_pszPrefix = NULL);
|
|
virtual ~CTempFile();
|
|
|
|
protected:
|
|
char m_szFileName[MAX_PATH+1];
|
|
};
|
|
|
|
#endif
|
|
//martysama0134's 2e58d0b8baeb072acdf3afc4a5d1999f
|