Salome HOME
Pipe feature
[modules/shaper.git] / src / GeomAPI / GeomAPI_Shape.h
index 03f75d7453da0e4c85e475bb7e1595a2f6d44b0e..37ba2b462ef86d890c4fb0571c0538f95ed8d008 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        GeomAPI_Shape.hxx
 // Created:     23 Apr 2014
 // Author:      Mikhail PONIKAROV
@@ -6,36 +8,87 @@
 #define GeomAPI_Shape_H_
 
 #include <GeomAPI_Interface.h>
-#include <boost/shared_ptr.hpp>
+#include <memory>
 #include <list>
 
 /**\class GeomAPI_Shape
  * \ingroup DataModel
  * \brief Interface to the topological shape object
  */
-class GEOMAPI_EXPORT GeomAPI_Shape : public GeomAPI_Interface
+class GeomAPI_Shape : public GeomAPI_Interface
 {
+public:
+  /// Shape type enum
+  enum ShapeType {
+    COMPOUND, COMPSOLID, SOLID, SHELL,
+    FACE, WIRE, EDGE, VERTEX,
+    SHAPE
+  };
+
  public:
   /// Creation of empty (null) shape
+  GEOMAPI_EXPORT 
   GeomAPI_Shape();
 
+  /// Returns true if the underlied shape is null
+  GEOMAPI_EXPORT 
   bool isNull() const;
 
   /// Returns whether the shapes are equal
-  virtual bool isEqual(const boost::shared_ptr<GeomAPI_Shape> theShape) const;
+  GEOMAPI_EXPORT 
+  virtual bool isEqual(const std::shared_ptr<GeomAPI_Shape> theShape) const;
 
   /// Returns whether the shape is a vertex
+  GEOMAPI_EXPORT 
   virtual bool isVertex() const;
 
   /// Returns whether the shape is an edge
+  GEOMAPI_EXPORT 
   virtual bool isEdge() const;
 
+  /// Returns whether the shape is a face
+  GEOMAPI_EXPORT 
+  virtual bool isFace() const;
+
+  /// Returns whether the shape is a compound
+  GEOMAPI_EXPORT 
+  virtual bool isCompound() const;
+
+  /// Returns whether the shape is a compound of solids
+  GEOMAPI_EXPORT 
+  virtual bool isCompoundOfSolids() const;
+
+  /// Returns whether the shape is a solid
+  GEOMAPI_EXPORT 
+  virtual bool isSolid() const;
+
+  /// Returns whether the shape is a compsolid
+  GEOMAPI_EXPORT
+  virtual bool isCompSolid() const;
+
+  /// Returns the shape type
+  GEOMAPI_EXPORT
+  virtual ShapeType shapeType() const;
+
+  /// \return the shape type as string.
+  GEOMAPI_EXPORT
+  virtual std::string shapeTypeStr() const;
+
+  /// Computes boundary dimensions of the shape
+  /// Returns False if it is not possible
+  GEOMAPI_EXPORT 
+  bool computeSize(double& theXmin, double& theYmin, double& theZmin,
+                   double& theXmax, double& theYmax, double& theZmax) const;
+
+  /// Returns the shape as BRep stream
+  GEOMAPI_EXPORT 
+  std::string getShapeStream() const;
 };
 
 //! Pointer on list of shapes
-typedef std::list<boost::shared_ptr<GeomAPI_Shape> > ListOfShape;
+typedef std::list<std::shared_ptr<GeomAPI_Shape> > ListOfShape;
 
 //! Pointer on attribute object
-typedef boost::shared_ptr<GeomAPI_Shape> GeomShapePtr;
+typedef std::shared_ptr<GeomAPI_Shape> GeomShapePtr;
 
 #endif