diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-23 18:58:19 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-23 18:58:19 +0100 |
commit | 379297638fcb89bdff368489764289e8ae593912 (patch) | |
tree | e9c9a6c89a3431e7478e17ee2936bd9786285618 | |
parent | Fix at least public facing old-style casts (diff) | |
download | slicer-379297638fcb89bdff368489764289e8ae593912.tar.bz2 slicer-379297638fcb89bdff368489764289e8ae593912.tar.xz slicer-379297638fcb89bdff368489764289e8ae593912.zip |
Add missing includes
-rw-r--r-- | slicer/db/sqlTablePatchSerializer.h | 1 | ||||
-rw-r--r-- | slicer/db/testPatch.cpp | 1 | ||||
-rw-r--r-- | slicer/db/testSelect.cpp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/slicer/db/sqlTablePatchSerializer.h b/slicer/db/sqlTablePatchSerializer.h index 9a82f85..025e122 100644 --- a/slicer/db/sqlTablePatchSerializer.h +++ b/slicer/db/sqlTablePatchSerializer.h @@ -1,6 +1,7 @@ #ifndef SLICER_DB_SQLTABLEPATCHSERIALIZER_H #define SLICER_DB_SQLTABLEPATCHSERIALIZER_H +#include <connection.h> #include <slicer/serializer.h> #include <tablepatch.h> diff --git a/slicer/db/testPatch.cpp b/slicer/db/testPatch.cpp index 70068e2..7c52ea6 100644 --- a/slicer/db/testPatch.cpp +++ b/slicer/db/testPatch.cpp @@ -5,6 +5,7 @@ #include <boost/date_time/posix_time/posix_time_io.hpp> #include <boost/test/unit_test.hpp> #include <common.h> +#include <connection.h> #include <slicer/slicer.h> #include <testModels.h> #include <types.h> diff --git a/slicer/db/testSelect.cpp b/slicer/db/testSelect.cpp index 0e765f2..7ff5e00 100644 --- a/slicer/db/testSelect.cpp +++ b/slicer/db/testSelect.cpp @@ -4,6 +4,7 @@ #include <boost/date_time/posix_time/posix_time_io.hpp> #include <boost/test/unit_test.hpp> #include <common.h> +#include <connection.h> #include <slicer/slicer.h> #include <sqlExceptions.h> #include <testModels.h> |