HAL  v4.5.0-83-g30c8f0afc
The Hardware Analyzer - a comprehensive reverse engineering and manipulation framework for gate-level netlists.
plugin_z3_utils.cpp
Go to the documentation of this file.
2 
3 namespace hal
4 {
5  extern std::unique_ptr<BasePluginInterface> create_plugin_instance()
6  {
7  return std::make_unique<Z3UtilsPlugin>();
8  }
9 
10  std::string Z3UtilsPlugin::get_name() const
11  {
12  return std::string("z3_utils");
13  }
14 
15  std::string Z3UtilsPlugin::get_version() const
16  {
17  return std::string("0.1");
18  }
19 
21  {
22  }
23 
24 } // namespace hal
void initialize() override
std::string get_version() const override
std::string get_name() const override
Definition: defines.h:45
std::unique_ptr< BasePluginInterface > create_plugin_instance()