wip
This commit is contained in:
7
model/Account.cpp
Executable file
7
model/Account.cpp
Executable file
@@ -0,0 +1,7 @@
|
||||
#include "Account.h"
|
||||
|
||||
|
||||
Account::~Account()
|
||||
{
|
||||
|
||||
}
|
21
model/Account.h
Executable file
21
model/Account.h
Executable 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
1
model/Preferences.cpp
Normal file
@@ -0,0 +1 @@
|
||||
#include "Preferences.h"
|
Reference in New Issue
Block a user