From 53a7390475cf27768e8e871f03e83d543838cd16 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 17 Dec 2014 21:24:43 +0000 Subject: Add missing includes highlighted when precompiled headers are disabled --- project2/basics/tests/equals.cpp | 1 + project2/basics/tests/greaterthan.cpp | 1 + project2/basics/tests/greaterthanorequal.cpp | 1 + project2/basics/tests/lessthan.cpp | 1 + project2/basics/tests/lessthanorequal.cpp | 1 + project2/basics/tests/notequals.cpp | 1 + project2/common/exceptions.cpp | 1 + project2/ice/iceConvert.cpp | 1 + project2/ice/iceConvert.h | 1 + project2/ice/iceDataSource.cpp | 1 + project2/sql/sqlMergeTask.h | 1 + 11 files changed, 11 insertions(+) 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 #include #include +#include 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 #include #include +#include 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 #include #include +#include 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 #include #include +#include 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 #include #include +#include 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 #include #include +#include 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 #include "exceptions.h" #include +#include #include 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 #include "iceConvert.h" #include +#include 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 +#include #include template 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 +#include #include 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 #include #include -- cgit v1.2.3