#pragma once
|
#include "CVariable.h"
|
#include <vector>
|
|
namespace SERVO {
|
class CReport
|
{
|
public:
|
CReport();
|
CReport(unsigned int reportId);
|
virtual ~CReport();
|
|
public:
|
unsigned int getReportId();
|
BOOL addVariable(CVariable* pVariable);
|
BOOL deleteVarialble(unsigned int nVarialbleId);
|
CVariable* getVariable(unsigned int nVarialbleId);
|
|
private:
|
unsigned int m_nReportId;
|
std::vector<CVariable*> m_variabels;
|
};
|
}
|