HAL
plugin_solve_fsm.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<SolveFsmPlugin>();
8  }
9 
10  std::string SolveFsmPlugin::get_name() const
11  {
12  return std::string("solve_fsm");
13  }
14 
15  std::string SolveFsmPlugin::get_version() const
16  {
17  return std::string("0.1");
18  }
19 
20  std::string SolveFsmPlugin::get_description() const
21  {
22  return "Plugin to automatically generate FSM state transition graphs for given FSMs.";
23  }
24 
25 } // namespace hal
std::string get_name() const override
Get the name of the plugin.
std::string get_description() const override
Get a short description of the plugin.
std::string get_version() const override
Get the version of the plugin.
std::unique_ptr< BasePluginInterface > create_plugin_instance()
Definition: plugin_gui.cpp:71