Salome HOME
Bug PAL7222( DEVELOPMENT : Info on mesh and export MED File ).
[modules/smesh.git] / src / SMESHDS / SMESHDS_Command.hxx
index 5de4a710c9aabed0ee4b8e3016ab11b55f822f1f..b72b21b86b8d37693e018d145a2db3dca3495c8c 100644 (file)
@@ -29,7 +29,6 @@
 
 #include "SMESHDS_CommandType.hxx"
 #include <list>
-using namespace std;
 
 class SMESHDS_Command
 {
@@ -52,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