comparison Core/SQLite/Connection.cpp @ 1225:4c649dbeb61a

fix build
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 19 Nov 2014 11:10:27 +0100
parents 9b9026560a5f
children 63d47b1fa239
comparison
equal deleted inserted replaced
1224:29cf3dd2cea4 1225:4c649dbeb61a
35 **/ 35 **/
36 36
37 37
38 #if ORTHANC_SQLITE_STANDALONE != 1 38 #if ORTHANC_SQLITE_STANDALONE != 1
39 #include "../PrecompiledHeaders.h" 39 #include "../PrecompiledHeaders.h"
40 #include <glog/logging.h>
41 #endif 40 #endif
42 41
43 #include "Connection.h" 42 #include "Connection.h"
44 #include "OrthancSQLiteException.h" 43 #include "OrthancSQLiteException.h"
45 44
46 #include <memory> 45 #include <memory>
47 #include <cassert> 46 #include <cassert>
48 #include <sqlite3.h> 47 #include <sqlite3.h>
49 #include <string.h> 48 #include <string.h>
49
50 #if ORTHANC_SQLITE_STANDALONE != 1
51 #include <glog/logging.h>
52 #endif
53
50 54
51 namespace Orthanc 55 namespace Orthanc
52 { 56 {
53 namespace SQLite 57 namespace SQLite
54 { 58 {