Last Update (partial) have to link every file in the right place
This commit is contained in:
parent
f63416b787
commit
e65aed8412
@ -2,3 +2,8 @@ ip: 127.0.0.1
|
||||
port: 2142
|
||||
conn_limit: 30
|
||||
motd: welcome
|
||||
|
||||
db_host: herisson.ovh
|
||||
db_user: meuporg
|
||||
db_pass: meuporg
|
||||
db_name: akata
|
||||
|
@ -6,12 +6,12 @@
|
||||
|
||||
int main( int carg, char* varg[] ){
|
||||
|
||||
Config conf("config.txt");
|
||||
Config conf("config.txt");
|
||||
|
||||
Database db;
|
||||
Database db;
|
||||
|
||||
Network net;
|
||||
Network net;
|
||||
|
||||
net.run();
|
||||
net.run();
|
||||
|
||||
}
|
5
social/Account.cpp
Normal file
5
social/Account.cpp
Normal file
@ -0,0 +1,5 @@
|
||||
#include "Account.hpp"
|
||||
|
||||
Account::Account() {
|
||||
|
||||
}
|
17
social/Account.hpp
Normal file
17
social/Account.hpp
Normal file
@ -0,0 +1,17 @@
|
||||
#include <string>
|
||||
#include "Database.hpp"
|
||||
|
||||
#ifndef ACCOUNT_H
|
||||
#define ACCOUNT_H
|
||||
|
||||
class Account
|
||||
{
|
||||
private:
|
||||
std::string name;
|
||||
|
||||
public:
|
||||
Account();
|
||||
virtual ~Account();
|
||||
};
|
||||
|
||||
#endif /* ACCOUNT_H */
|
Loading…
Reference in New Issue
Block a user