comparison OrthancFramework/Sources/SQLite/StatementId.cpp @ 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 namespace Orthanc 46 namespace Orthanc
47 { 47 {
48 namespace SQLite 48 namespace SQLite
49 { 49 {
50 Orthanc::SQLite::StatementId::StatementId(const char *file,
51 int line) :
52 file_(file),
53 line_(line)
54 {
55 }
56
50 bool StatementId::operator< (const StatementId& other) const 57 bool StatementId::operator< (const StatementId& other) const
51 { 58 {
52 if (line_ != other.line_) 59 if (line_ != other.line_)
53 return line_ < other.line_; 60 return line_ < other.line_;
54 61