diff options
Diffstat (limited to 'project2/files/pch.hpp')
-rw-r--r-- | project2/files/pch.hpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/project2/files/pch.hpp b/project2/files/pch.hpp new file mode 100644 index 0000000..0721191 --- /dev/null +++ b/project2/files/pch.hpp @@ -0,0 +1,33 @@ +#ifdef BOOST_BUILD_PCH_ENABLED +#ifndef FILES_PCH +#define FILES_PCH + +#include <boost/algorithm/string/predicate.hpp> +#include <boost/algorithm/string/split.hpp> +#include <boost/algorithm/string/trim.hpp> +#include <boost/bind.hpp> +#include <boost/date_time/posix_time/posix_time.hpp> +#include <boost/filesystem/operations.hpp> +#include <boost/filesystem/path.hpp> +#include <boost/intrusive_ptr.hpp> +#include <boost/lexical_cast.hpp> +#include "definedColumns.h" +#include "exceptions.h" +#include "fileRows.h" +#include "fsRows.h" +#include <glibmm/fileutils.h> +#include <glibmm/iochannel.h> +#include "logger.h" +#include "optionsSource.h" +#include "rowProcessor.h" +#include "rowSet.h" +#include "scopeObject.h" +#include "scriptLoader.h" +#include "scripts.h" +#include "scriptStorage.h" +#include "streamRows.h" +#include "variables.h" + +#endif +#endif + |