comparison Framework/SQLite/SQLiteResult.h @ 186:6fe74f9a516e

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Dec 2020 15:05:19 +0100
parents 4cd7e45b671e
children 3236894320d6
comparison
equal deleted inserted replaced
185:7c46155b5bb4 186:6fe74f9a516e
37 bool done_; 37 bool done_;
38 38
39 void StepInternal(); 39 void StepInternal();
40 40
41 protected: 41 protected:
42 virtual IValue* FetchField(size_t index); 42 virtual IValue* FetchField(size_t index) ORTHANC_OVERRIDE;
43 43
44 public: 44 public:
45 SQLiteResult(SQLiteStatement& statement); 45 explicit SQLiteResult(SQLiteStatement& statement);
46 46
47 virtual bool IsDone() const 47 virtual bool IsDone() const ORTHANC_OVERRIDE
48 { 48 {
49 return done_; 49 return done_;
50 } 50 }
51 51
52 virtual void Next(); 52 virtual void Next() ORTHANC_OVERRIDE;
53 }; 53 };
54 } 54 }