summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2014-12-17 21:24:43 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2014-12-17 21:24:43 +0000
commit369f977a36a582325a65b9fd8804037b1ea24957 (patch)
treeca4350ab72b677ee195c9037da0cab359eb437db
parentCorrectly resolve file options path to an absolute path (diff)
downloadproject2-369f977a36a582325a65b9fd8804037b1ea24957.tar.bz2
project2-369f977a36a582325a65b9fd8804037b1ea24957.tar.xz
project2-369f977a36a582325a65b9fd8804037b1ea24957.zip
Add missing includes highlighted when precompiled headers are disabled
-rw-r--r--project2/basics/tests/equals.cpp1
-rw-r--r--project2/basics/tests/greaterthan.cpp1
-rw-r--r--project2/basics/tests/greaterthanorequal.cpp1
-rw-r--r--project2/basics/tests/lessthan.cpp1
-rw-r--r--project2/basics/tests/lessthanorequal.cpp1
-rw-r--r--project2/basics/tests/notequals.cpp1
-rw-r--r--project2/common/exceptions.cpp1
-rw-r--r--project2/ice/iceConvert.cpp1
-rw-r--r--project2/ice/iceConvert.h1
-rw-r--r--project2/ice/iceDataSource.cpp1
-rw-r--r--project2/sql/sqlMergeTask.h1
11 files changed, 11 insertions, 0 deletions
diff --git a/project2/basics/tests/equals.cpp b/project2/basics/tests/equals.cpp
index a83a42d..425d317 100644
--- a/project2/basics/tests/equals.cpp
+++ b/project2/basics/tests/equals.cpp
@@ -1,6 +1,7 @@
#include <pch.hpp>
#include <test.h>
#include <scriptLoader.h>
+#include <variables.h>
class Equals : public Test {
public:
diff --git a/project2/basics/tests/greaterthan.cpp b/project2/basics/tests/greaterthan.cpp
index f029bfb..b43cef1 100644
--- a/project2/basics/tests/greaterthan.cpp
+++ b/project2/basics/tests/greaterthan.cpp
@@ -1,6 +1,7 @@
#include <pch.hpp>
#include <test.h>
#include <scriptLoader.h>
+#include <variables.h>
class GreaterThan : public Test {
public:
diff --git a/project2/basics/tests/greaterthanorequal.cpp b/project2/basics/tests/greaterthanorequal.cpp
index 6da05f4..67328b2 100644
--- a/project2/basics/tests/greaterthanorequal.cpp
+++ b/project2/basics/tests/greaterthanorequal.cpp
@@ -1,6 +1,7 @@
#include <pch.hpp>
#include <test.h>
#include <scriptLoader.h>
+#include <variables.h>
class GreaterThanOrEqual : public Test {
public:
diff --git a/project2/basics/tests/lessthan.cpp b/project2/basics/tests/lessthan.cpp
index 78b111f..f040532 100644
--- a/project2/basics/tests/lessthan.cpp
+++ b/project2/basics/tests/lessthan.cpp
@@ -1,6 +1,7 @@
#include <pch.hpp>
#include <test.h>
#include <scriptLoader.h>
+#include <variables.h>
class LessThan : public Test {
public:
diff --git a/project2/basics/tests/lessthanorequal.cpp b/project2/basics/tests/lessthanorequal.cpp
index 2b2b511..1cb0e9e 100644
--- a/project2/basics/tests/lessthanorequal.cpp
+++ b/project2/basics/tests/lessthanorequal.cpp
@@ -1,6 +1,7 @@
#include <pch.hpp>
#include <test.h>
#include <scriptLoader.h>
+#include <variables.h>
class LessThanOrEqual : public Test {
public:
diff --git a/project2/basics/tests/notequals.cpp b/project2/basics/tests/notequals.cpp
index 499ce61..aeb784e 100644
--- a/project2/basics/tests/notequals.cpp
+++ b/project2/basics/tests/notequals.cpp
@@ -1,6 +1,7 @@
#include <pch.hpp>
#include <test.h>
#include <scriptLoader.h>
+#include <variables.h>
class NotEquals : public Test {
public:
diff --git a/project2/common/exceptions.cpp b/project2/common/exceptions.cpp
index 1140e96..732616d 100644
--- a/project2/common/exceptions.cpp
+++ b/project2/common/exceptions.cpp
@@ -1,6 +1,7 @@
#include <pch.hpp>
#include "exceptions.h"
#include <error.h>
+#include <string.h>
#include <boost/format.hpp>
std::string
diff --git a/project2/ice/iceConvert.cpp b/project2/ice/iceConvert.cpp
index 1169aad..1b7bcfd 100644
--- a/project2/ice/iceConvert.cpp
+++ b/project2/ice/iceConvert.cpp
@@ -1,6 +1,7 @@
#include <pch.hpp>
#include "iceConvert.h"
#include <boost/numeric/conversion/cast.hpp>
+#include <Ice/Config.h>
template<>
VariableType
diff --git a/project2/ice/iceConvert.h b/project2/ice/iceConvert.h
index 7d68b9f..93e531c 100644
--- a/project2/ice/iceConvert.h
+++ b/project2/ice/iceConvert.h
@@ -2,6 +2,7 @@
#define ICECONVERT_H
#include <variableType.h>
+#include <IceUtil/Exception.h>
#include <IceUtil/Optional.h>
template <typename IceType>
diff --git a/project2/ice/iceDataSource.cpp b/project2/ice/iceDataSource.cpp
index 5f2004c..0493a58 100644
--- a/project2/ice/iceDataSource.cpp
+++ b/project2/ice/iceDataSource.cpp
@@ -2,6 +2,7 @@
#include "buildClient.h"
#include "iceDataSource.h"
#include <scripts.h>
+#include <logger.h>
#include <Ice/Ice.h>
IceBase::Libs IceDataSource::libs;
diff --git a/project2/sql/sqlMergeTask.h b/project2/sql/sqlMergeTask.h
index 34fd7aa..bc97b7c 100644
--- a/project2/sql/sqlMergeTask.h
+++ b/project2/sql/sqlMergeTask.h
@@ -10,6 +10,7 @@
#include "iterate.h"
#include "variables.h"
#include "sqlWriter.h"
+#include "rdbmsDataSource.h"
#include <string>
#include <set>
#include <map>