Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/smesh.git] / src / SMESHDS / SMESHDS_Command.hxx
index 7c3014e7d2e66a2caf4dc920008f735eb3481e53..b72b21b86b8d37693e018d145a2db3dca3495c8c 100644 (file)
@@ -51,15 +51,17 @@ class SMESHDS_Command
        void MoveNode(int NewNodeID, double x, double y, double z);
        void RemoveNode(int NodeID);
        void RemoveElement(int ElementID);
+       void ChangeElementNodes(int ElementID, int nodes[], int nbnodes);
+       void Renumber (const bool isNodes, const int startID, const int deltaID);
        SMESHDS_CommandType GetType();
        int GetNumber();
-       const list<int> & GetIndexes();
-       const list<double> & GetCoords();
+       const std::list<int> & GetIndexes();
+       const std::list<double> & GetCoords();
         ~SMESHDS_Command();
   private:
        SMESHDS_CommandType myType;
        int myNumber;
-       list<double> myReals;
-       list<int> myIntegers;
+       std::list<double> myReals;
+       std::list<int> myIntegers;
 };
 #endif