#include <cWidgetBase.h>


Public Member Functions | |
| bool | Process (tXmlParser::node cur) |
| Passes a DataSet to WithDataFunctions::ProcessDataSet() and saves the result or calls WithDataFunctions::Process for any other tag. | |
Protected Attributes | |
| tValue::Set | m_data |
| The parsed DataSet. | |
Definition at line 130 of file cWidgetBase.h.
| bool cWidget::WithSingleData::Process | ( | tXmlParser::node | cur | ) | [virtual] |
Passes a DataSet to WithDataFunctions::ProcessDataSet() and saves the result or calls WithDataFunctions::Process for any other tag.
Reimplemented from cWidget::WithDataFunctions.
Reimplemented in cWidget::BarGauge, and cWidget::Rectangle.
Definition at line 304 of file cWidgetBase.cpp.
References m_data, cWidget::WithDataFunctions::Process(), and cWidget::WithDataFunctions::ProcessDataSet().
Referenced by cWidget::Rectangle::Process(), and cWidget::BarGauge::Process().
00305 { 00306 if(cur.IsOfType("DataSet")) { 00307 m_data = ProcessDataSet(cur); 00308 return true; 00309 } 00310 return WithDataFunctions::Process(cur);


tValue::Set cWidget::WithSingleData::m_data [protected] |
The parsed DataSet.
Definition at line 132 of file cWidgetBase.h.
Referenced by Process(), cWidget::Rectangle::Render(), and cWidget::BarGauge::Render().
1.5.4