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