diff Orthanc/Core/SQLite/FunctionContext.h @ 162:f17ecfffdc75

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 10 Jul 2017 11:51:20 +0200
parents 3809121c3290
children
line wrap: on
line diff
--- a/Orthanc/Core/SQLite/FunctionContext.h	Thu Jun 15 17:43:34 2017 +0200
+++ b/Orthanc/Core/SQLite/FunctionContext.h	Mon Jul 10 11:51:20 2017 +0200
@@ -36,9 +36,6 @@
 
 #include "Statement.h"
 
-struct sqlite3_context;
-struct Mem;  // This corresponds to the opaque type "sqlite3_value"
- 
 namespace Orthanc
 {
   namespace SQLite
@@ -50,14 +47,14 @@
     private:
       struct sqlite3_context* context_;
       unsigned int argc_;
-      struct ::Mem** argv_;
+      Internals::SQLiteValue** argv_;
 
       void CheckIndex(unsigned int index) const;
 
     public:
       FunctionContext(struct sqlite3_context* context,
                       int argc,
-                      struct ::Mem** argv);
+                      Internals::SQLiteValue** argv);
 
       ColumnType GetColumnType(unsigned int index) const;