GnuCashew ~ Web Application compatible with GnuCash sql data files.
GCW
Loading...
Searching...
No Matches
BudgetAmounts.h
Go to the documentation of this file.
1#line 2 "src/Dbo/BudgetAmounts/BudgetAmounts.h"
2
3#ifndef __DBO_BUDGETAMOUNTS_H___
4#define __DBO_BUDGETAMOUNTS_H___
5
6#include "Item.h"
7
8namespace GCW {
9 namespace Dbo {
10 namespace BudgetAmounts {
11
12/*!
13** \brief Load BudgetAmount by Guid
14*/
15auto load( const std::string & _guid )-> Item::Ptr;
16
17/*!
18** \brief Load BudgetAmount by Guid
19*/
20auto byGuid( const std::string & _guid )-> Item::Ptr;
21
22 } // BudgetAmounts
23 } // Dbo
24} // GCW
25
26
27
28#endif // __DBO_BUDGETAMOUNTS_H___
29
30
Wt::Dbo::ptr< Item > Ptr
Definition BaseItem.h:39
auto byGuid(const std::string &_guid) -> Item::Ptr
Load BudgetAmount by Guid.
auto load(const std::string &_guid) -> Item::Ptr
Load BudgetAmount by Guid.
Definition App.h:18