/* * * Created on: Mar 1, 2021 * Author: astrisw * */ #ifndef BASEMONITOR_H_ #define BASEMONITOR_H_ #include #include namespace inaf::oasbo::Monitors{ class BaseMonitor{ public: virtual void monit(PacketLib::BasePacket &) = 0; virtual void printStats()=0; virtual ~BaseMonitor() = default; }; } #endif /* BASEWRITER_H_ */