forked from mia/Aegisub
Fix non-pch compilation
This commit is contained in:
parent
ffa69421cd
commit
b8b9bfdfb6
10 changed files with 22 additions and 4 deletions
|
@ -35,6 +35,7 @@
|
|||
|
||||
#ifndef AGI_PRE
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <cstdint>
|
||||
|
||||
#include <wx/gdicmn.h>
|
||||
|
|
|
@ -28,6 +28,11 @@
|
|||
#ifndef AGI_PRE
|
||||
#include <map>
|
||||
|
||||
#include <wx/button.h>
|
||||
#include <wx/dir.h>
|
||||
#include <wx/filename.h>
|
||||
#include <wx/listbox.h>
|
||||
#include <wx/sizer.h>
|
||||
#include <wx/statbox.h>
|
||||
#endif
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
|
||||
#ifndef AGI_PRE
|
||||
#include <cstdint>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
///
|
||||
|
||||
#ifndef AGI_PRE
|
||||
#include <map>
|
||||
#include <wx/string.h>
|
||||
#endif
|
||||
|
||||
|
|
|
@ -26,6 +26,10 @@
|
|||
#include <libaegisub/scoped_ptr.h>
|
||||
#include <libaegisub/signal.h>
|
||||
|
||||
#ifndef AGI_PRE
|
||||
#include <wx/string.h>
|
||||
#endif
|
||||
|
||||
namespace agi { namespace charset { class IconvWrapper; } }
|
||||
class Hunspell;
|
||||
|
||||
|
|
|
@ -36,10 +36,6 @@
|
|||
|
||||
#include "subtitle_format_srt.h"
|
||||
|
||||
#ifndef AGI_PRE
|
||||
#include <wx/regex.h>
|
||||
#endif
|
||||
|
||||
#include "ass_attachment.h"
|
||||
#include "ass_dialogue.h"
|
||||
#include "ass_file.h"
|
||||
|
@ -53,6 +49,11 @@
|
|||
|
||||
#include <libaegisub/of_type_adaptor.h>
|
||||
|
||||
#ifndef AGI_PRE
|
||||
#include <map>
|
||||
#include <wx/regex.h>
|
||||
#endif
|
||||
|
||||
DEFINE_SIMPLE_EXCEPTION(SRTParseError, SubtitleFormatParseError, "subtitle_io/parse/srt")
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
#include "threaded_frame_source.h"
|
||||
|
||||
#ifndef AGI_PRE
|
||||
#include <deque>
|
||||
#include <functional>
|
||||
|
||||
#include <boost/range/adaptor/indirected.hpp>
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
#endif
|
||||
#include <map>
|
||||
|
||||
#include <wx/clipbrd.h>
|
||||
#include <wx/dir.h>
|
||||
#include <wx/filename.h>
|
||||
#include <wx/stdpaths.h>
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
#pragma once
|
||||
|
||||
namespace agi { struct Color; }
|
||||
class wxString;
|
||||
|
||||
enum VariableDataType {
|
||||
VARDATA_NONE,
|
||||
|
|
|
@ -27,6 +27,8 @@
|
|||
#include <set>
|
||||
#include <vector>
|
||||
|
||||
#include <boost/container/list.hpp>
|
||||
|
||||
#include <wx/log.h>
|
||||
#include <wx/event.h>
|
||||
#include <wx/button.h>
|
||||
|
|
Loading…
Reference in a new issue