]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
new methods was added
authorenk <enk@opencascade.com>
Wed, 18 Oct 2006 12:24:48 +0000 (12:24 +0000)
committerenk <enk@opencascade.com>
Wed, 18 Oct 2006 12:24:48 +0000 (12:24 +0000)
src/VISU_I/VISU_ScalarMapOnDeformedShape_i.cc
src/VISU_I/VISU_ScalarMapOnDeformedShape_i.hh

index d2c7a7d366ce123d32a4d7eab4a43b62bdfd6154..487268f8bc8158da84373bf6bac494fd0ed8a3c4 100644 (file)
@@ -291,14 +291,22 @@ void VISU::ScalarMapOnDeformedShape_i::SetScalarMeshName(const char* theName){
 std::string VISU::ScalarMapOnDeformedShape_i::GetScalarMeshName(){
   return myScalarMeshName;
 }
+char* VISU::ScalarMapOnDeformedShape_i::GetScalarCMeshName(){
+  return &this->GetScalarMeshName()[0];
+}
 
 void VISU::ScalarMapOnDeformedShape_i::SetScalarFieldName(const char* theName){
   myScalarFieldName = theName;
 }
+
 std::string VISU::ScalarMapOnDeformedShape_i::GetScalarFieldName(){
   return myScalarFieldName;
 }
 
+char* VISU::ScalarMapOnDeformedShape_i::GetScalarCFieldName(){
+  return &this->GetScalarFieldName()[0];
+}
+
 void VISU::ScalarMapOnDeformedShape_i::SetScalarIteration(const int theValue){
   myScalarIteration = theValue;
 }
@@ -308,6 +316,10 @@ int VISU::ScalarMapOnDeformedShape_i::GetScalarIteration(){
   return myScalarIteration;
 }
 
+CORBA::Long VISU::ScalarMapOnDeformedShape_i::GetScalarLIteration(){
+  return CORBA::Long(this->GetScalarIteration());
+}
+
 void VISU::ScalarMapOnDeformedShape_i::SetScalarEntity(const VISU::TEntity theValue){
   myScalarEntity = theValue;
 }
index f80fce72af36fdb5029093cdfd1ba65c7cd6de1e..f14c1606fbbf02462656145c5ac7e7ef2532b9ee 100644 (file)
@@ -131,10 +131,13 @@ namespace VISU{
 
     virtual void SetScalarFieldName(const char* theName);
     virtual std::string GetScalarFieldName();
+    virtual char* GetScalarCFieldName();
     virtual void SetScalarIteration(const int theValue);
     virtual int GetScalarIteration();
+    virtual CORBA::Long GetScalarLIteration();
     virtual void SetScalarMeshName(const char* theName);
     virtual std::string GetScalarMeshName();
+    virtual char* GetScalarCMeshName();
     virtual void SetScalarEntity(const VISU::TEntity theValue);
     virtual VISU::TEntity GetScalarEntity();
     virtual void SetScalarEEntity(const VISU::Entity theValue);