18 lines
207 B
C
18 lines
207 B
C
|
#ifndef ACCOUNT_H
|
||
|
#define ACCOUNT_H
|
||
|
|
||
|
#include <list>
|
||
|
#include <map>
|
||
|
#include <wx/wx.h>
|
||
|
|
||
|
class Account {
|
||
|
public:
|
||
|
wxString id;
|
||
|
wxString name;
|
||
|
wxString number;
|
||
|
bool shared;
|
||
|
bool _default;
|
||
|
};
|
||
|
|
||
|
#endif
|