summaryrefslogtreecommitdiff
path: root/project2/basics
diff options
context:
space:
mode:
Diffstat (limited to 'project2/basics')
-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
6 files changed, 6 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: