summaryrefslogtreecommitdiff
path: root/server/src/database.h
diff options
context:
space:
mode:
authordeva <deva>2008-05-22 06:34:29 +0000
committerdeva <deva>2008-05-22 06:34:29 +0000
commit62f78877e99e1748d6548deeb65067770c0ad0b8 (patch)
treee34909843537e629b61b943c7e1111a028ee078b /server/src/database.h
parent037ffe54785bccc90eeb15e5b6fa49f508e5230e (diff)
Fixed GPL headers to actually contain the contributors...
Diffstat (limited to 'server/src/database.h')
-rw-r--r--server/src/database.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/server/src/database.h b/server/src/database.h
index 91a09f4..157cf6d 100644
--- a/server/src/database.h
+++ b/server/src/database.h
@@ -3,8 +3,8 @@
* database.h
*
* Thu Sep 6 10:59:07 CEST 2007
- * Copyright 2007 Bent Bisballe Nyeng, Lars Bisballe Jensen and Peter Skaarup
- * deva@aasimon.org, elsenator@gmail.com and piparum@piparum.dk
+ * Copyright 2007 Bent Bisballe Nyeng
+ * deva@aasimon.org
****************************************************************************/
/*
@@ -41,6 +41,18 @@ public:
int post(std::string &user, std::string &cpr, time_t now, Commit &commit);
+ // Make a commit to the db
+ void commit() {}
+
+ // Get a list of values from the db
+ void getValues() {}
+
+ // Connect to the db
+ void connect() {}
+
+ // Disconnect from the db
+ void disconnect() {}
+
private:
pqxx::connection c;
};