#include <WritableTableDataSource.h>
Inheritance diagram for Impala::Application::MediaTable::WritableTableDataSource:


Public Member Functions | |
| WritableTableDataSource () | |
| ~WritableTableDataSource () | |
| int | GetTotalRows () |
| String | GetTextDataByID (String column, int row) |
| int | GetIntDataByID (String column, int row) |
| double | GetDoubleDataByID (String column, int row) |
| double | GetNormalizedDataByID (String column, int row) |
| Array2dVec3UInt8 * | GetImageDataByID (String column, int row) |
| void | AddStaticColumn (String name, int coltype) |
| void | AddColumn (String name, int coltype) |
| void | AddTextData (String column, String data) |
| void | AddImageData (String column, Array2dVec3UInt8 *data) |
| void | AddIntData (String column, int data) |
| void | AddDoubleData (String column, double data) |
Private Member Functions | |
| void | Init () |
| void | UpdateRowsEvent () |
Private Attributes | |
| int | mTotalRows |
| std::map< std::string, std::vector< int > > | mIntMap |
| std::map< std::string, std::vector< double > > | mDoubleMap |
| std::map< std::string, std::vector< std::string > > | mTextMap |
| std::map< std::string, std::vector< Array2dVec3UInt8 * > > | mImageMap |
| ILOG_VAR_DEC | |
Definition at line 10 of file WritableTableDataSource.h.
1.5.1