Salome HOME
Integration of PAL/SALOME V2.1.0c from OCC
[modules/smesh.git] / src / SMDS / SMDS_Position.hxx
index 6047c30c397612442670926a7b91339a9a7b9153..a18ec9eb223e0fbb72011cf411cc79ce0d1e3975 100644 (file)
 class SMDS_Position;
 typedef boost::shared_ptr<SMDS_Position> SMDS_PositionPtr;
 
+
 class SMDS_Position
 {
 
   public:
        const virtual double * Coords() const = 0;
-       virtual inline SMDS_TypeOfPosition GetTypeOfPosition() const = 0;
+       virtual SMDS_TypeOfPosition GetTypeOfPosition() const = 0;
+       virtual int GetDim() const;
        void SetShapeId(int aShapeId);
        int GetShapeId() const;
        virtual ~SMDS_Position() {}
@@ -49,4 +51,6 @@ class SMDS_Position
   private:
        int myShapeId;
 };
+
+
 #endif