summaryrefslogtreecommitdiff
path: root/src/dal/dataprovider.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2009-12-06 21:10:17 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2009-12-06 21:10:17 +0100
commitacdadcf88986fad08406994330fc6e95db76a6e9 (patch)
tree62e9d4f28039365157f1894b8b7b8da4991f6831 /src/dal/dataprovider.h
parent6c342f8fc39fe788a32c99d345cf41b32809ef51 (diff)
downloadmanaserv-acdadcf88986fad08406994330fc6e95db76a6e9.tar.gz
manaserv-acdadcf88986fad08406994330fc6e95db76a6e9.tar.bz2
manaserv-acdadcf88986fad08406994330fc6e95db76a6e9.tar.xz
manaserv-acdadcf88986fad08406994330fc6e95db76a6e9.zip
Moved DALStorage documentation into source file
Some methods were documented twice. Stuff moved to source file since this keeps the header more readable, and makes it easier to keep the documentation up to date with the implementation. Also, my IDE jumps to the definition when navigating. Removed two methods that were without an implementation.
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;
/**