view database/backend/postgresql/account.cpp @ 18:cc13926bed59

Client: add more bindings for Window, #462
author David Demelier <markand@malikania.fr>
date Sun, 03 Apr 2016 20:10:37 +0200
parents 8991989c4708
children
line wrap: on
line source

#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)
{
}

}