Last Update (partial) have to link every file in the right place

This commit is contained in:
2022-03-15 20:15:05 +01:00
parent f63416b787
commit e65aed8412
10 changed files with 31 additions and 4 deletions

5
social/Account.cpp Normal file
View File

@ -0,0 +1,5 @@
#include "Account.hpp"
Account::Account() {
}

17
social/Account.hpp Normal file
View 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 */