Newer
Older
/*
*
* Created on: Mar 1, 2021
* Author: astrisw
*
*/
#ifndef BASEMONITOR_H_
#define BASEMONITOR_H_
#include <string>
virtual void printStats()=0;
virtual ~BaseMonitor() = default;
};
/*
*
* Created on: Mar 1, 2021
* Author: astrisw
*
*/
#ifndef BASEMONITOR_H_
#define BASEMONITOR_H_
#include <string>
virtual void printStats()=0;
virtual ~BaseMonitor() = default;
};