mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-22 10:45:57 +00:00
15 lines
328 B
C++
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
|