Month generation in progress

This commit is contained in:
2010-06-23 14:25:00 +02:00
parent 391aef379b
commit ac5c26bc4f
9 changed files with 122 additions and 4 deletions

View File

@@ -137,3 +137,8 @@ void KissCount::DeleteCategory(struct category category)
{
_db->DeleteCategory(_user, category);
}
std::map<int, std::vector<int> > KissCount::GetAllOperations()
{
return _db->GetAllOperations(_user);
}

View File

@@ -36,6 +36,7 @@ class KissCount
void UpdateCategory(wxString oldName, struct category category);
void DeleteCategory(struct category category);
std::map<int, std::vector<int> > GetAllOperations();
private:
wxUI* _wxUI;
Database* _db;