First runnable version

This commit is contained in:
2011-08-27 18:35:36 +02:00
parent 991486a042
commit 658ec606ed
28 changed files with 657 additions and 646 deletions

View File

@@ -21,6 +21,7 @@
#define OPERATION_H
#include <vector>
#include <QString>
struct Operation {
int id;
@@ -29,13 +30,13 @@ struct Operation {
unsigned int month;
unsigned int year;
double amount;
std::string description;
QString description;
int category;
bool fix_cost;
int account;
bool checked;
int transfert;
std::string formula;
QString formula;
bool meta;
bool _virtual;
std::vector<int> childs;