Tellurium Plugin C++ API  1.0.0
 All Classes Files Functions Variables Friends Pages
telCPPPlugin.h
Go to the documentation of this file.
1 
41 #ifndef telCPPPluginH
42 #define telCPPPluginH
43 #include "telPlugin.h"
44 //---------------------------------------------------------------------------
45 namespace tlp
46 {
50 class CORE_DECLSPEC CPPPlugin : public Plugin
51 {
52  protected:
53 
54  public:
58  CPPPlugin( const string& name,
59  const string& cat = gNoneString,
60  RoadRunner* aRR = NULL,
61  const PluginManager* pm = NULL);
62 
66  virtual ~CPPPlugin();
67  string getImplementationLanguage();
68 };
69 
70 }
71 
72 #endif