diff --git a/src/Column.h b/src/Column.h index 8b1e505..b46779c 100644 --- a/src/Column.h +++ b/src/Column.h @@ -12,7 +12,6 @@ #include -#include "Exception.h" #include "Statement.h" diff --git a/src/Database.cpp b/src/Database.cpp index 84c6cc4..e8985a3 100644 --- a/src/Database.cpp +++ b/src/Database.cpp @@ -11,6 +11,7 @@ #include "Database.h" #include "Statement.h" +#include "Exception.h" namespace SQLite diff --git a/src/Statement.cpp b/src/Statement.cpp index 47ecb55..a0f7fab 100644 --- a/src/Statement.cpp +++ b/src/Statement.cpp @@ -12,6 +12,8 @@ #include "Database.h" #include "Column.h" +#include "Exception.h" + namespace SQLite { diff --git a/src/Transaction.cpp b/src/Transaction.cpp index c3c3358..a1bdb3f 100644 --- a/src/Transaction.cpp +++ b/src/Transaction.cpp @@ -11,6 +11,7 @@ #include "Transaction.h" #include "Database.h" +#include "Exception.h" namespace SQLite