ntopng/tests/include/NtopTestingBase.h
Giorgio Zoppi 0d19c08c1e Added destructor a la c++03
modified:   tests/include/NtopTestingBase.h
2022-02-07 15:22:26 +01:00

15 lines
328 B
C++

#ifndef _TEST_NTOP_TESTING_BASE_H_
#define _TEST_NTOP_TESTING_BASE_H_
#include "ntop_includes.h"
// rule of 0
class NtopTestingBase {
public:
NtopTestingBase();
virtual ~NtopTestingBase();
Prefs* GetPreferences() const;
private:
void InitializePreferences();
Ntop* ntop_;
Prefs* pref_;
};
#endif