22 lines
250 B
C
22 lines
250 B
C
|
#ifndef ACCOUNT_H
|
||
|
#define ACCOUNT_H
|
||
|
|
||
|
#include <list>
|
||
|
#include <map>
|
||
|
#include <wx/wx.h>
|
||
|
|
||
|
class Account
|
||
|
{
|
||
|
public:
|
||
|
~Account();
|
||
|
|
||
|
wxString _id;
|
||
|
wxString _name;
|
||
|
wxString _number;
|
||
|
int _amount;
|
||
|
bool _shared;
|
||
|
bool _default;
|
||
|
};
|
||
|
|
||
|
#endif
|