initial commit

This commit is contained in:
alexeevdv
2015-02-13 16:59:11 +03:00
parent e7e6193f9a
commit 529598ef70
38 changed files with 6355 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
#ifndef STDAFX_H
#define STDAFX_H
#include <map>
#include <vector>
#include <fstream>
#include "Hacks/Types.h"
#include "Hacks/CArray.h"
class CString;
class CObject
{
public :
CObject();
};
class CDWordArray : public CArray<WORD, WORD>
{
};
class CStringArray : public CArray<CString, CString>
{
};
class UserException
{
};
void AfxThrowUserException();
#endif