diff options
Diffstat (limited to 'src/report.h')
-rw-r--r-- | src/report.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/report.h b/src/report.h index 15ee82c6..96965b16 100644 --- a/src/report.h +++ b/src/report.h @@ -108,7 +108,14 @@ public: session_t& session; output_stream_t output_stream; +#define BUDGET_NO_BUDGET 0x00 +#define BUDGET_BUDGETED 0x01 +#define BUDGET_UNBUDGETED 0x02 + + uint_least8_t budget_flags; + explicit report_t(session_t& _session); + virtual ~report_t() { output_stream.close(); } |