comparison Framework/MySQL/MySQLResult.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
38 bool done_; 38 bool done_;
39 39
40 void Step(); 40 void Step();
41 41
42 protected: 42 protected:
43 virtual IValue* FetchField(size_t index); 43 virtual IValue* FetchField(size_t index) ORTHANC_OVERRIDE;
44 44
45 public: 45 public:
46 MySQLResult(MySQLDatabase& db, 46 MySQLResult(MySQLDatabase& db,
47 MySQLStatement& statement); 47 MySQLStatement& statement);
48 48
49 virtual ~MySQLResult(); 49 virtual ~MySQLResult() ORTHANC_OVERRIDE;
50 50
51 virtual bool IsDone() const 51 virtual bool IsDone() const ORTHANC_OVERRIDE
52 { 52 {
53 return done_; 53 return done_;
54 } 54 }
55 55
56 virtual void Next(); 56 virtual void Next() ORTHANC_OVERRIDE;
57 }; 57 };
58 } 58 }