blob: 6ea0b042d065a4b12e81c2eb2a1f4495d4c615aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef T2DLL_T2PREFFILE_H
#define T2DLL_T2PREFFILE_H
#include "../common.h"
class AFX_CLASS_EXPORT T2PrefFile {
public:
T2PrefFile(const unsigned char* str1, const unsigned char* str2, int val);
virtual ~T2PrefFile();
protected:
CString mStr;
};
#endif
|