Newer
Older
/*
*
* Created on: Mar 1, 2021
* Author: astrisw
*
*/
#ifndef BASEMONITOR_H_
#define BASEMONITOR_H_
#include <string>
#include <Base_Packet.h>
class BaseMonitor{
public:
virtual void monit(BasePacket &pack)=0;
virtual void printStats()=0;
virtual ~BaseMonitor() = default;
};
#endif /* BASEWRITER_H_ */