Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / GeomAPI / GeomAPI_Edge.h
index bd186c22b9659cc632cf5884fcd9b8ea19a1fb0e..f1c74c5d55573b1f92310a1d306aa7cc7339611d 100644 (file)
  * \brief Interface to the edge object
  */
 
-class GEOMAPI_EXPORT GeomAPI_Edge: public GeomAPI_Shape
+class GEOMAPI_EXPORT GeomAPI_Edge : public GeomAPI_Shape
 {
-public:
+ public:
   /// Creation of empty (null) shape
   GeomAPI_Edge();
 
   /// Returns whether the shape is a vertex
   virtual bool isVertex() const
-  { return false; }
+  {
+    return false;
+  }
 
   /// Returns whether the shape is an edge
   virtual bool isEdge() const
-  { return true; }
+  {
+    return true;
+  }
 
   /// Verifies that the edge is a line
   bool isLine() const;