0ad/source/tools/atlas/AtlasUI/Misc/stdafx.h
Ykkrosh 8bc8bcb740 Atlas: more flexible brushes
This was SVN commit r2868.
2005-10-08 03:55:21 +00:00

53 lines
1.1 KiB
C++

// Precompiled headers:
#ifdef _WIN32
# define HAVE_PCH
#endif
#ifdef HAVE_PCH
// Exclude rarely-used stuff from Windows headers
#define WIN32_LEAN_AND_MEAN
// Include useful wx headers
#include "wx/wxprec.h"
#include "wx/listctrl.h"
#include "wx/docview.h"
#include "wx/cmdproc.h"
#include "wx/dialog.h"
#include "wx/filename.h"
#include "wx/artprov.h"
#include "wx/file.h"
#include "wx/dir.h"
#include "wx/colordlg.h"
#include "wx/regex.h"
#include "wx/image.h"
#include "wx/splitter.h"
#include "wx/spinctrl.h"
#include <vector>
#include <string>
#include <set>
#include <stack>
#include <map>
#include <boost/preprocessor/seq/for_each_i.hpp>
#include <boost/preprocessor/tuple/elem.hpp>
#include <boost/preprocessor/punctuation/comma_if.hpp>
// Nicer memory-leak detection:
#ifdef _DEBUG
#include <crtdbg.h>
#define new new(_NORMAL_BLOCK ,__FILE__, __LINE__)
#endif
#endif // HAVE_PCH
#ifndef HAVE_PCH
// If no PCH, just include a load of common headers anyway
# include "wx/wx.h"
#endif
#define ATLASDLLIMPEXP extern "C" __declspec(dllexport)