GnuCashew ~ GnuCash Enabled Web
GCW
GnuCashew.h
Go to the documentation of this file.
1 #line 2 "src/GnuCashew.h"
2 
3 #ifndef __GNUCASHEW_H___
4 #define __GNUCASHEW_H___
5 
6 #define DEC_NAMESPACE DECIMAL
7 #include "Glb/gcwglobal.h"
8 #include "3rd/decimal.h"
9 #include "define.h"
10 #include "App.h"
11 #include "Dbo/Vars/Vars.h"
12 
13 namespace GCW {
14 
15  /*!
16  ** \brief Config Namespace
17  **
18  ** The config namespace provides access to the various
19  ** configuration variables.
20  **
21  */
22  namespace Cfg {
23 
24 /*!
25 ** \brief Decimal Format Specifier
26 **
27 ** This provides the DECIMAL<2>() library with the formatting
28 ** specification for converting DECIMAL numbers to strings.
29 **
30 */
32 
33 /*!
34 ** \brief Date Format Specifier
35 **
36 **
37 */
38 std::string date_format();
39 
40 /*!
41 ** \brief Time Format Specifier
42 **
43 **
44 */
45 std::string time_format();
46 
47  } // endnamespace Cfg {
48 } // endnamespace GCW {
49 
50 #endif // end#ifndef __GNUCASHEW_H___
51 
52 
std::string date_format()
Date Format Specifier.
Definition: GnuCashew.cpp:27
std::string time_format()
Time Format Specifier.
Definition: GnuCashew.cpp:35
DECIMAL::decimal_format decimal_format()
Decimal Format Specifier.
Definition: GnuCashew.cpp:21
Definition: App.h:17