GCC Code Coverage Report


Directory: ./
File: tests/tools/plugin.hh
Date: 2024-11-13 12:35:17
Exec Total Coverage
Lines: 0 2 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 #ifndef _PLUGIN_HH_
2 #define _PLUGIN_HH_
3
4 class PluginAbstract {
5 public:
6 PluginAbstract(){};
7 virtual ~PluginAbstract(){};
8 virtual void Initialization(std::string &astr) = 0;
9 };
10
11 typedef PluginAbstract *createPlugin_t();
12 #endif /* _PLUGIN_HH_ */
13