Skip to content
Snippets Groups Projects
Commit a8491420 authored by Steven Murray's avatar Steven Murray
Browse files

Added override clause to ConnFactory subclasses

parent 1f6f4456
Branches
Tags
No related merge requests found
......@@ -44,14 +44,14 @@ public:
/**
* Destructor.
*/
virtual ~OcciConnFactory() throw();
virtual ~OcciConnFactory() throw() override;
/**
* Returns a newly created database connection.
*
* @return A newly created database connection.
*/
virtual Conn *create();
virtual Conn *create() override;
private:
......
......@@ -39,14 +39,14 @@ public:
/**
* Destructor.
*/
virtual ~SqliteConnFactory() throw();
virtual ~SqliteConnFactory() throw() override;
/**
* Returns a newly created database connection.
*
* @return A newly created database connection.
*/
virtual Conn *create();
virtual Conn *create() override;
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment