comparison Core/SQLite/Connection.h @ 1221:2255e66da726

getting rid of the dependency against Boost in the SQLite C++ wrapper
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 10 Nov 2014 17:05:50 +0100
parents 9b9026560a5f
children 63d47b1fa239
comparison
equal deleted inserted replaced
1220:9b9026560a5f 1221:2255e66da726
39 39
40 #include "Statement.h" 40 #include "Statement.h"
41 #include "IScalarFunction.h" 41 #include "IScalarFunction.h"
42 42
43 #include <string> 43 #include <string>
44 #include <boost/noncopyable.hpp>
45 #include <map> 44 #include <map>
46 45
47 struct sqlite3; 46 struct sqlite3;
48 struct sqlite3_stmt; 47 struct sqlite3_stmt;
49 48
51 50
52 namespace Orthanc 51 namespace Orthanc
53 { 52 {
54 namespace SQLite 53 namespace SQLite
55 { 54 {
56 class Connection : boost::noncopyable 55 class Connection : NonCopyable
57 { 56 {
58 friend class Statement; 57 friend class Statement;
59 friend class Transaction; 58 friend class Transaction;
60 59
61 private: 60 private: