summaryrefslogtreecommitdiff
path: root/unity-shared/pch
diff options
authorJussi Pakkanen <jussi.pakkanen@canonical.com>2012-12-18 15:09:57 +0200
committerJussi Pakkanen <jussi.pakkanen@canonical.com>2012-12-18 15:09:57 +0200
commit4f696dc521bcf43eade6a12008d095d7e6399de9 (patch)
tree59ab5a9436e2edee883901b4d46dcc9582ccfee6 /unity-shared/pch
parent11ccbe317ea7fae1deedc9747baf36b6ba67863d (diff)
Added pch support to unity-shared.
(bzr r2998.2.2)
Diffstat (limited to 'unity-shared/pch')
-rw-r--r--unity-shared/pch/unity-shared_pch.hh33
1 files changed, 33 insertions, 0 deletions
diff --git a/unity-shared/pch/unity-shared_pch.hh b/unity-shared/pch/unity-shared_pch.hh
new file mode 100644
index 000000000..060dbba3c
--- /dev/null
+++ b/unity-shared/pch/unity-shared_pch.hh
@@ -0,0 +1,33 @@
+// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
+/*
+ * Copyright (C) 2012 Canonical Ltd
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authored by: Jussi Pakkanen <jussi.pakkanen@canonical.com>
+ */
+
+/*
+ * These are the precompiled header includes for UnityCore.
+ * Only system header files can be listed here.
+ */
+
+#include <vector>
+#include <string>
+#include <map>
+#include <memory>
+
+#include <Nux/Nux.h>
+#include <sigc++/sigc++.h>
+#include <boost/utility.hpp>
+#include <boost/algorithm/string.hpp>