Initial commit.

This commit is contained in:
blitz-research
2014-01-31 08:23:00 +13:00
commit 08a613ed0e
322 changed files with 45306 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#ifndef STDAFX_H
#define STDAFX_H
#pragma warning(disable:4786)
#include <afxwin.h> // Core
#include <afxcmn.h> // Common Controls
#include <afxrich.h> // CRich edit
#include <map>
#include <list>
#include <vector>
#include <string>
using namespace std;
//some stuff that should be in std libs
int atoi( const string &s );
double atof( const string &s );
string itoa( int n );
string ftoa( float n );
string tolower( const string &s );
string toupper( const string &s );
string fullfilename( const string &t );
string filenamepath( const string &t );
string filenamefile( const string &t );
#endif