#pragma once #include "CReport.h" #include namespace SERVO { class CCollectionEvent { public: CCollectionEvent(); virtual ~CCollectionEvent(); public: unsigned int getEventId(); BOOL addReport(CReport* pReport); BOOL deleteReport(unsigned int nReportId); CReport* getReport(unsigned int nReportId); private: unsigned int m_nCEID; std::vector m_reports; }; }