Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / ModelAPI / ModelAPI_Plugin.h
index 31795c3f15c57590308904dd3a950129bfe5c741..5222b4c7b5edcd23582cdffbd6933428784cb4a7 100644 (file)
@@ -18,16 +18,21 @@ class ModelAPI_Feature;
 
 class MODELAPI_EXPORT ModelAPI_Plugin
 {
-public:
+ public:
   /// Creates the feature object of this plugin by the feature string ID
   virtual boost::shared_ptr<ModelAPI_Feature> createFeature(std::string theFeatureID) = 0;
 
   /// To virtually destroy the fields of successors
-  virtual ~ModelAPI_Plugin() {}
+  virtual ~ModelAPI_Plugin()
+  {
+  }
 
-protected:
+ protected:
   /// Is needed for python wrapping by swig
-  ModelAPI_Plugin() {};
+  ModelAPI_Plugin()
+  {
+  }
+  ;
 };
 
 #endif