#ifndef _REPORT_REPEATERS_H #define _REPORT_REPEATERS_H #include "Report.h" class Report_Repeaters: public Report { const int m_domainId; public: Report_Repeaters(const SpiderManager *_sm, const int _domainId): Report(_sm), m_domainId(_domainId) {} }; #endif