summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2PrefFile.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2PrefFile.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/T2DLL/T2PrefFile.h b/src/T2DLL/T2PrefFile.h
new file mode 100644
index 0000000..1c33962
--- /dev/null
+++ b/src/T2DLL/T2PrefFile.h
@@ -0,0 +1,11 @@
+#pragma once
+#include "common.h"
+
+class T2PrefFile {
+public:
+ T2PrefFile(const unsigned char* str1, const unsigned char* str2, int val);
+ virtual ~T2PrefFile();
+
+protected:
+ CString mStr;
+};