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