Skip to content
Base_Monitor.h 322 B
Newer Older
Valerio Pastore's avatar
Valerio Pastore committed
/*
 *
 *  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_ */