]> SALOME platform Git repositories - modules/geom.git/blobdiff - src/NMTTools/NMTTools_CoupleOfShape.hxx
Salome HOME
0021672: [CEA 565] Dump Study from script
[modules/geom.git] / src / NMTTools / NMTTools_CoupleOfShape.hxx
index 17ccbd0af7227faa17536a37ba9698c70ee618a5..fef9a00fe0f0fed14f7e1c429bc82163d06ebc09 100644 (file)
@@ -1,4 +1,6 @@
-// Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
 // This library is free software; you can redistribute it and/or
@@ -6,7 +8,7 @@
 // License as published by the Free Software Foundation; either
 // version 2.1 of the License.
 //
-// This library is distributed in the hope that it will be useful
+// This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 // Lesser General Public License for more details.
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
+// File:        NMTTools_CoupleOfShape.hxx
+// Created:     Wed Jan 28 15:06:11 2004
+// Author:      Peter KURNEV
+//              <pkv@irinox>
+//
 #ifndef _NMTTools_CoupleOfShape_HeaderFile
 #define _NMTTools_CoupleOfShape_HeaderFile
 
-#ifndef _TopoDS_Shape_HeaderFile
-#include <TopoDS_Shape.hxx>
-#endif
-class TopoDS_Shape;
-
-
-#ifndef _Standard_HeaderFile
 #include <Standard.hxx>
-#endif
-#ifndef _Standard_Macro_HeaderFile
 #include <Standard_Macro.hxx>
-#endif
-
-
-class NMTTools_CoupleOfShape  {
-
-public:
-
-    void* operator new(size_t,void* anAddress) 
-      {
-        return anAddress;
-      }
-    void* operator new(size_t size) 
-      { 
-        return Standard::Allocate(size); 
-      }
-    void  operator delete(void *anAddress) 
-      { 
-        if (anAddress) Standard::Free((Standard_Address&)anAddress); 
-      }
- // Methods PUBLIC
- // 
-
-
-Standard_EXPORT NMTTools_CoupleOfShape();
-
-
-Standard_EXPORT   void SetShape1(const TopoDS_Shape& aS) ;
-
-
-Standard_EXPORT   void SetShape2(const TopoDS_Shape& aS) ;
-
-
-Standard_EXPORT  const TopoDS_Shape& Shape1() const;
-
-
-Standard_EXPORT  const TopoDS_Shape& Shape2() const;
-
-
-
-
-
-protected:
-
- // Methods PROTECTED
- // 
-
-
- // Fields PROTECTED
- //
-TopoDS_Shape myShape1;
-TopoDS_Shape myShape2;
-
+#include <TopoDS_Shape.hxx>
 
-private: 
+//=======================================================================
+//class    : NMTTools_CoupleOfShape
+//purpose  :
+//=======================================================================
+class NMTTools_CoupleOfShape
+{
+ public:
+  Standard_EXPORT
+    NMTTools_CoupleOfShape();
 
- // Methods PRIVATE
- // 
+  Standard_EXPORT
+    void SetShape1(const TopoDS_Shape& aS) ;
 
+  Standard_EXPORT
+    void SetShape2(const TopoDS_Shape& aS) ;
 
- // Fields PRIVATE
- //
+  Standard_EXPORT
+    const TopoDS_Shape& Shape1() const;
 
+  Standard_EXPORT
+    const TopoDS_Shape& Shape2() const;
 
+ protected:
+  TopoDS_Shape myShape1;
+  TopoDS_Shape myShape2;
 };
-
-
-
-
-
-// other Inline functions and methods (like "C++: function call" methods)
-//
-
-
 #endif