diff database/backend/postgresql/account.cpp @ 0:8991989c4708

Initial import
author David Demelier <markand@malikania.fr>
date Tue, 22 Mar 2016 18:26:05 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/database/backend/postgresql/account.cpp	Tue Mar 22 18:26:05 2016 +0100
@@ -0,0 +1,20 @@
+#include <string>
+
+class Database;
+class Account;
+
+extern "C" {
+
+void account_create(Database &database, Account &account)
+{
+}
+
+void account_update(Database &database, Account &account)
+{
+}
+
+void account_delete(Database &database, Account &account)
+{
+}
+
+}