diff options
| author | randomdan <randomdan@localhost> | 2014-03-10 20:24:23 +0000 |
|---|---|---|
| committer | randomdan <randomdan@localhost> | 2014-03-10 20:24:23 +0000 |
| commit | a5d682ffb36c05cd12fd6064ec380c8608ebf75b (patch) | |
| tree | 114a2d8c8b1534f05fe10d002ff031f590e4f3f8 /project2/ice/pch.hpp | |
| parent | Adds native support for time_duration as a variable type (diff) | |
| download | project2-a5d682ffb36c05cd12fd6064ec380c8608ebf75b.tar.bz2 project2-a5d682ffb36c05cd12fd6064ec380c8608ebf75b.tar.xz project2-a5d682ffb36c05cd12fd6064ec380c8608ebf75b.zip | |
Add basic workings of the Ice client and daemon modules - will probably change, but basic functionality works
Diffstat (limited to 'project2/ice/pch.hpp')
| -rw-r--r-- | project2/ice/pch.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/project2/ice/pch.hpp b/project2/ice/pch.hpp new file mode 100644 index 0000000..c74eebf --- /dev/null +++ b/project2/ice/pch.hpp @@ -0,0 +1,21 @@ +#ifdef BOOST_BUILD_PCH_ENABLED +#ifndef CGI_PCH +#define CGI_PCH + +#include <Ice/Ice.h> +#include <boost/filesystem.hpp> +#include <boost/foreach.hpp> +#include <boost/function.hpp> +#include <boost/optional.hpp> +#include <commonObjects.h> +#include <exceptions.h> +#include <logger.h> +#include <map> +#include <options.h> +#include <Slice/Parser.h> +#include <string> +#include <variables.h> + +#endif +#endif + |
