Fire Core  8.0.0.alpha
GIS framework per tutti gli usi
 Tutto Classi Namespace Funzioni Variabili Ridefinizioni di tipo (typedef) Tipi enumerati (enum) Valori del tipo enumerato Friend
Info.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 
4 #ifndef FIRE_PLUGIN_INFO_HPP_INCLUDED
5 #define FIRE_PLUGIN_INFO_HPP_INCLUDED
6 
7 #include <fire/source/PluginInfo.hpp>
8 
9 #include <string>
10 
11 namespace fire {
12 namespace plugin {
13 
14 class Info : public source::PluginInfo {
15  private:
16  static const std::string _PLUGIN_VERSION;
17  static const std::string _PLUGIN_VENDOR;
18  static const std::string _PLUGIN_NAMESPACE;
19 
20  public:
21  virtual std::string getNamespace() const;
22  virtual std::string getVendor() const;
23  virtual std::string getVersion() const;
24 };
25 
26 } // namespace plugin
27 } // namespace fire
28 
29 #endif
virtual std::string getVersion() const
Versione del Plugin.
virtual std::string getVendor() const
Nome del produttore del Plugin.
virtual std::string getNamespace() const
Nome univoco del Plugin.
Informazioni sul plugin attivo.
Definition: PluginInfo.hpp:19
Definition: Info.hpp:14