KissCount/model/Account.h

22 lines
250 B
C
Raw Normal View History

#ifndef ACCOUNT_H
#define ACCOUNT_H
#include <list>
#include <map>
2010-05-15 11:21:42 +02:00
#include <wx/wx.h>
class Account
{
2010-05-15 11:21:42 +02:00
public:
~Account();
wxString _id;
wxString _name;
wxString _number;
int _amount;
bool _shared;
bool _default;
};
#endif