Files
BlitzNext/debugger/stdafx.hpp
T

29 lines
593 B
C++
Raw Normal View History

2014-01-31 08:23:00 +13:00
#ifndef STDAFX_H
#define STDAFX_H
2019-01-18 17:04:34 +01:00
#pragma warning(disable : 4786)
2014-01-31 08:23:00 +13:00
2019-01-18 17:04:34 +01:00
#include <afxcmn.h> // Common Controls
#include <afxrich.h> // CRich edit
#include <afxwin.h> // Core
2014-01-31 08:23:00 +13:00
#include <list>
2019-01-18 17:04:34 +01:00
#include <map>
2014-01-31 08:23:00 +13:00
#include <string>
2019-01-18 17:04:34 +01:00
#include <vector>
2014-01-31 08:23:00 +13:00
using namespace std;
//some stuff that should be in std libs
2019-01-18 17:04:34 +01:00
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);
2014-01-31 08:23:00 +13:00
#endif