Newer
Older
/*
*
* Created on: Mar 1, 2021
* Author: astrisw
*
*/
#ifndef BASEMONITOR_H_
#define BASEMONITOR_H_
#include <string>
#include <Base_Packet.h>
template<typename Value, template<typename> typename Container>
void monit(PacketLib::BasePacket<Container,Value> &);
virtual void printStats()=0;
virtual ~BaseMonitor() = default;
};