Fix non-pch compliation

This commit is contained in:
Thomas Goyne 2013-11-19 08:59:27 -08:00
parent 3d573f0e70
commit 2e051a8fde
8 changed files with 10 additions and 2 deletions

View File

@ -28,6 +28,8 @@
#include "libaegisub/option.h"
#include "libaegisub/option_value.h"
#include <fstream>
namespace agi {
MRUManager::MRUManager(agi::fs::path const& config, std::string const& default_config, agi::Options *options)

View File

@ -33,6 +33,7 @@
#include <boost/range/adaptor/map.hpp>
#include <cassert>
#include <fstream>
#include <memory>
#include <sstream>

View File

@ -54,6 +54,7 @@
#include <libaegisub/path.h>
#include <algorithm>
#include <fstream>
AudioController::AudioController(agi::Context *context)
: context(context)

View File

@ -52,6 +52,7 @@
#include <boost/algorithm/string/predicate.hpp>
#include <boost/algorithm/string/replace.hpp>
#include <boost/filesystem.hpp>
#include <fstream>
namespace {
agi::fs::path cache_dir() {

View File

@ -47,6 +47,7 @@
#include <libaegisub/cajun/writer.h>
#include <algorithm>
#include <fstream>
#include <vector>
#include <wx/listbox.h>

View File

@ -32,9 +32,9 @@
#include <libaegisub/log.h>
#include <libaegisub/path.h>
#include <hunspell/hunspell.hxx>
#include <boost/format.hpp>
#include <fstream>
#include <hunspell/hunspell.hxx>
HunspellSpellChecker::HunspellSpellChecker()
: lang_listener(OPT_SUB("Tool/Spell Checker/Language", &HunspellSpellChecker::OnLanguageChanged, this))

View File

@ -40,6 +40,7 @@
#include <libaegisub/of_type_adaptor.h>
#include <boost/algorithm/string/replace.hpp>
#include <fstream>
namespace
{

View File

@ -30,6 +30,7 @@
#include <boost/algorithm/string/predicate.hpp>
#include <boost/filesystem.hpp>
#include <fstream>
TextFileWriter::TextFileWriter(agi::fs::path const& filename, std::string encoding)
: file(new agi::io::Save(filename, true))