Move directories, fix a bug into month generation (tree), add tooltips

This commit is contained in:
2010-07-04 17:42:14 +02:00
parent 5999035959
commit d29afc619e
44 changed files with 97 additions and 26 deletions

17
src/model/Account.h Normal file
View File

@@ -0,0 +1,17 @@
#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