GnuCashew ~ Web Application compatible with GnuCash sql data files.
GCW
Loading...
Searching...
No Matches
Numeric.h
Go to the documentation of this file.
1#line 2 "src/Glb/Numeric.h"
2
3#ifndef __GCW_NUMERIC_H___
4#define __GCW_NUMERIC_H___
5
6#include "../3rd/decimal.h"
7
8namespace GCW {
9
11: public DECIMAL::decimal<2>
12{
13 public:
14
15 Numeric(): DECIMAL::decimal<2>(0) {}
16 Numeric( int _value ): DECIMAL::decimal<2>( _value ) {}
17
18 auto addValue( const Wt::WString & _value )-> void
19 {
20 }
21
22 auto subValue( const Wt::WString & _value )-> void
23 {
24 }
25
26};
27
28} // endnamespace GCW
29
30#endif
31
auto addValue(const Wt::WString &_value) -> void
Definition Numeric.h:18
Numeric(int _value)
Definition Numeric.h:16
auto subValue(const Wt::WString &_value) -> void
Definition Numeric.h:22
Definition App.h:18