Fix compilation without precompiled headers

Originally committed to SVN as r5791.
This commit is contained in:
Thomas Goyne 2011-10-28 20:15:10 +00:00
parent 0a04b62d1d
commit ffa622d698
7 changed files with 9 additions and 0 deletions

View File

@ -24,6 +24,7 @@
#include <cstring>
#include <functional>
#include <memory>
#include <sstream>
#endif
#include "libaegisub/cajun/elements.h"

View File

@ -10,6 +10,7 @@ Author: Terry Caton
#include <deque>
#include <list>
#include <map>
#include <string>
#include <stdexcept>

View File

@ -19,6 +19,7 @@
/// @ingroup libaegisub
#ifndef LAGI_PRE
#include <deque>
#include <fstream>
#include <list>
#include <map>

View File

@ -23,6 +23,7 @@
#include <wx/any.h>
#include <wx/checkbox.h>
#include <wx/combobox.h>
#include <wx/dirdlg.h>
#include <wx/event.h>
#include <wx/filefn.h>
#include <wx/fontdlg.h>

View File

@ -42,6 +42,7 @@
#else
#include <tr1/functional>
#endif
#include <wx/clipbrd.h>
#include <wx/intl.h>
#endif

View File

@ -48,6 +48,7 @@
#include <wx/filename.h>
#include <wx/log.h>
#include <wx/stdpaths.h>
#include <wx/window.h>
#endif
#include <libaegisub/log.h>

View File

@ -48,6 +48,9 @@
#include <wx/menuitem.h>
#endif
class wxMouseEvent;
class wxWindow;
/// DOCME
typedef std::vector<std::pair<int,int> > IntPairVector;