diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-06-06 17:35:52 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-06-06 17:35:52 +0100 |
commit | b29cc0691de6b3a6c069a12b2cbcba6bb66dab34 (patch) | |
tree | 40dfef9620f29b22a2e3a7b53dcfc68a45006fb6 /project2/sql | |
parent | Correct log message when dropping mock DB (diff) | |
download | project2-b29cc0691de6b3a6c069a12b2cbcba6bb66dab34.tar.bz2 project2-b29cc0691de6b3a6c069a12b2cbcba6bb66dab34.tar.xz project2-b29cc0691de6b3a6c069a12b2cbcba6bb66dab34.zip |
Introduce AppInstance for correctly scoping otherwise global things
Diffstat (limited to 'project2/sql')
-rw-r--r-- | project2/sql/unittests/testCore.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/project2/sql/unittests/testCore.h b/project2/sql/unittests/testCore.h index 2b5be0e..0a667d6 100644 --- a/project2/sql/unittests/testCore.h +++ b/project2/sql/unittests/testCore.h @@ -3,8 +3,9 @@ #include <commonObjects.h> #include <variableType.h> +#include <appInstance.h> -class TestCore : public CommonObjects { +class TestCore : public CommonObjects, AppInstance { public: TestCore(); |