18 lines
193 B
C++
18 lines
193 B
C++
|
#include <string>
|
||
|
#include "Database.hpp"
|
||
|
|
||
|
#ifndef ACCOUNT_H
|
||
|
#define ACCOUNT_H
|
||
|
|
||
|
class Account
|
||
|
{
|
||
|
private:
|
||
|
std::string name;
|
||
|
|
||
|
public:
|
||
|
Account();
|
||
|
virtual ~Account();
|
||
|
};
|
||
|
|
||
|
#endif /* ACCOUNT_H */
|