This commit is contained in:
2010-06-05 14:33:19 +02:00
parent aef7c2b61a
commit 1e79c5114e
6 changed files with 182 additions and 0 deletions

7
model/Account.cpp Executable file
View File

@@ -0,0 +1,7 @@
#include "Account.h"
Account::~Account()
{
}

21
model/Account.h Executable file
View File

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

1
model/Preferences.cpp Normal file
View File

@@ -0,0 +1 @@
#include "Preferences.h"