mirror of
https://gitlab.com/niansa/PolicyToolLib.git
synced 2025-03-06 20:48:27 +01:00
7 lines
114 B
C++
7 lines
114 B
C++
#ifndef _MODULEBASE_HPP
|
|
#define _MODULEBASE_HPP
|
|
class ModuleBase {
|
|
public:
|
|
virtual ~ModuleBase() {}
|
|
};
|
|
#endif
|