15 #include "CeeReport/Base.h" 17 #include "CeeCore/RefCountedObject.h" 18 #include "CeeCore/Str.h" 33 Table(
size_t numRows,
size_t numCols);
39 Str value(
size_t row,
size_t col)
const;
40 bool setValue(
size_t row,
size_t col,
const Str& val);
41 size_t rowCount()
const;
42 size_t columnCount()
const;
44 Str chartYAxisTitle()
const;
45 void setChartYAxisTitle(
const Str& yAxisTitle);
46 Str chartXAxisTitle()
const;
47 void setChartXAxisTitle(
const Str& xAxisTitle);
50 CEE_PRIVATE_IMPL(
Table);
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
A general unicode based string class.
Definition: Str.h:28
Base class for all reference counted objects with built-in support for intrusive reference counting...
Definition: RefCountedObject.h:34
Data table structure for use in report generation.
Definition: Table.h:30