summaryrefslogtreecommitdiff
path: root/src/dal/dataprovider.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dal/dataprovider.h')
-rw-r--r--src/dal/dataprovider.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/src/dal/dataprovider.h b/src/dal/dataprovider.h
index c6dc2a79..5ab21cc1 100644
--- a/src/dal/dataprovider.h
+++ b/src/dal/dataprovider.h
@@ -56,24 +56,12 @@ typedef enum {
class DataProvider
{
public:
- /**
- * Constructor.
- */
DataProvider()
throw();
- /**
- * Destructor.
- */
- virtual
- ~DataProvider()
+ virtual ~DataProvider()
throw();
- /**
- * Get the connection status.
- *
- * @return true if connected.
- */
bool isConnected() const
throw();
@@ -119,9 +107,6 @@ class DataProvider
*/
virtual void disconnect() = 0;
- /**
- * Get the Database Name.
- */
std::string getDbName() const;
/**