comparison OrthancFramework/Sources/SQLite/Transaction.h @ 4811:064d86287630

added missing ORTHANC_OVERRIDE
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 23 Nov 2021 15:03:02 +0100
parents 50b0c69b653a
children c847b0dfd255
comparison
equal deleted inserted replaced
4810:7afbb54bd028 4811:064d86287630
59 virtual ~Transaction(); 59 virtual ~Transaction();
60 60
61 // Returns true when there is a transaction that has been successfully begun. 61 // Returns true when there is a transaction that has been successfully begun.
62 bool IsOpen() const; 62 bool IsOpen() const;
63 63
64 virtual void Begin(); 64 virtual void Begin() ORTHANC_OVERRIDE;
65 65
66 virtual void Rollback(); 66 virtual void Rollback() ORTHANC_OVERRIDE;
67 67
68 virtual void Commit(); 68 virtual void Commit() ORTHANC_OVERRIDE;
69 }; 69 };
70 } 70 }
71 } 71 }