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 <cstring>
#include <functional> #include <functional>
#include <memory> #include <memory>
#include <sstream>
#endif #endif
#include "libaegisub/cajun/elements.h" #include "libaegisub/cajun/elements.h"

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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