GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: tests/tools/plugin.hh Lines: 0 2 0.0 %
Date: 2023-03-13 12:09:37 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_ */