comparison OrthancFramework/Sources/SQLite/StatementReference.h @ 4304:50b0c69b653a

continued abi
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 06 Nov 2020 16:33:52 +0100
parents d25f4c0fa160
children c847b0dfd255
comparison
equal deleted inserted replaced
4303:44b53a2c0a13 4304:50b0c69b653a
45 45
46 #include "NonCopyable.h" 46 #include "NonCopyable.h"
47 #include "SQLiteTypes.h" 47 #include "SQLiteTypes.h"
48 48
49 #include <stdint.h> 49 #include <stdint.h>
50 #include <cassert>
51 #include <stdlib.h> 50 #include <stdlib.h>
52 51
53 52
54 namespace Orthanc 53 namespace Orthanc
55 { 54 {
74 73
75 ~StatementReference(); 74 ~StatementReference();
76 75
77 uint32_t GetReferenceCount() const; 76 uint32_t GetReferenceCount() const;
78 77
79 struct sqlite3_stmt* GetWrappedObject() const 78 struct sqlite3_stmt* GetWrappedObject() const;
80 {
81 assert(statement_ != NULL);
82 return statement_;
83 }
84 }; 79 };
85 } 80 }
86 } 81 }