]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/ModelAPI/ModelAPI_Interface.hxx
Salome HOME
Auto-formatting according to the defined code standard.
[modules/shaper.git] / src / ModelAPI / ModelAPI_Interface.hxx
index 377b7eab74d5c2aa6027e20f30cf7ab10448a1fe..6fdb28dbc17a718f463f918d04c627ea2c3b06fb 100644 (file)
@@ -18,17 +18,26 @@ class MODELAPI_EXPORT ModelAPI_Interface
 
 public:
   /// None - constructor
-  virtual ModelAPI_Interface() {myImpl = 0;}
+  virtual ModelAPI_Interface()
+  {
+    myImpl = 0;
+  }
 
   /// Constructor by the implementation pointer (used for internal needs)
-  virtual ModelAPI_Interface(void* theImpl) {myImpl = theImpl;}
+  virtual ModelAPI_Interface(void* theImpl)
+  {
+    myImpl = theImpl;
+  }
 
   /// Copy-constructor
-  virtual ModelAPI_Interface(ModelAPI_Interface& theOrig) 
-  {myImpl = theOrig.theImpl; Duplicate();}
+  virtual ModelAPI_Interface(ModelAPI_Interface& theOrig)
+  {
+    myImpl = theOrig.theImpl;
+    Duplicate();
+  }
 
   virtual ModelAPI_Interface& operator=(ModelAPI_Interface& const theOrig)
-  {myImpl = theOrig.theImpl; Duplicate(); return *this;}
+  { myImpl = theOrig.theImpl; Duplicate(); return *this;}
 
   /// Duplicates the objet pointed by myImpl (loosing the old one)
   virtual void Duplicate() = 0;