Salome HOME
Revolution tests.
[modules/shaper.git] / src / GeomAPI / GeomAPI_Shape.h
index 514287a03a22a08f89a1a7467b30c6fb4247c4e9..08281bb2919ccb1e936323fe76660c23fd48716b 100644 (file)
@@ -1,29 +1,68 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        GeomAPI_Shape.hxx
 // Created:     23 Apr 2014
 // Author:      Mikhail PONIKAROV
 
-#ifndef GeomAPI_Shape_HeaderFile
-#define GeomAPI_Shape_HeaderFile
+#ifndef GeomAPI_Shape_H_
+#define GeomAPI_Shape_H_
 
 #include <GeomAPI_Interface.h>
+#include <memory>
+#include <list>
 
 /**\class GeomAPI_Shape
  * \ingroup DataModel
  * \brief Interface to the topological shape object
  */
-class TopoDS_Shape;
-
-#define MY_SHAPE static_cast<TopoDS_Shape*>(myImpl)
-
-class GEOMAPI_EXPORT GeomAPI_Shape: public GeomAPI_Interface
+class GEOMAPI_EXPORT 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_Shape();
 
-  bool isNull();
+  /// Returns true if the underlied shape is null
+  bool isNull() const;
+
+  /// Returns whether the shapes are equal
+  virtual bool isEqual(const std::shared_ptr<GeomAPI_Shape> theShape) const;
+
+  /// Returns whether the shape is a vertex
+  virtual bool isVertex() const;
+
+  /// Returns whether the shape is an edge
+  virtual bool isEdge() const;
 
+  /// Returns whether the shape is a face
+  virtual bool isFace() const;
+
+  /// Returns whether the shape is a face
+  virtual bool isCompound() const;
+
+  /// Returns whether the shape is a solid
+  virtual bool isSolid() const;
+
+  /// Computes boundary dimensions of the shape
+  /// Returns False if it is not possible
+  bool computeSize(double& theXmin, double& theYmin, double& theZmin,
+                   double& theXmax, double& theYmax, double& theZmax) const;
+
+  /// Returns the shape as BRep stream
+  std::string getShapeStream() const;
 };
 
-#endif
+//! Pointer on list of shapes
+typedef std::list<std::shared_ptr<GeomAPI_Shape> > ListOfShape;
+
+//! Pointer on attribute object
+typedef std::shared_ptr<GeomAPI_Shape> GeomShapePtr;
 
+#endif