Salome HOME
Fix compilation pb on gcc 6 (add missing std includes)
[modules/smesh.git] / src / SMDS / SMDS_VertexPosition.hxx
index a42dee62bb6b0c10d3e74cca4dbe517ac79c2299..4db67d527abbfa8a1b91ca4a3cbb054da4749fc6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2016  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
@@ -20,7 +20,7 @@
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
-//  SMESH SMDS : implementaion of Salome mesh data structure
+//  SMESH SMDS : implementation of Salome mesh data structure
 //  File   : SMDS_VertexPosition.hxx
 //  Module : SMESH
 //
 
 #include "SMDS_Position.hxx"
 
-class SMDS_EXPORT SMDS_VertexPosition:public SMDS_Position
+class SMDS_EXPORT SMDS_VertexPosition : public SMDS_Position
 {
-
-  public:       
-        SMDS_TypeOfPosition GetTypeOfPosition() const;
-        SMDS_VertexPosition();
+ public:
+  SMDS_TypeOfPosition GetTypeOfPosition() const { return SMDS_TOP_VERTEX; }
+  virtual const double* GetParameters() const { return 0; }
+  static SMDS_PositionPtr StaticPosition(); 
 };
 
 #endif