comparison OrthancFramework/Sources/SQLite/FunctionContext.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
56 int argc, 56 int argc,
57 Internals::SQLiteValue** argv); 57 Internals::SQLiteValue** argv);
58 58
59 ColumnType GetColumnType(unsigned int index) const; 59 ColumnType GetColumnType(unsigned int index) const;
60 60
61 unsigned int GetParameterCount() const 61 unsigned int GetParameterCount() const;
62 {
63 return argc_;
64 }
65 62
66 int GetIntValue(unsigned int index) const; 63 int GetIntValue(unsigned int index) const;
67 64
68 int64_t GetInt64Value(unsigned int index) const; 65 int64_t GetInt64Value(unsigned int index) const;
69 66