]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Added method SALOME_Notebook::GetAttributeParameters
authorouv <ouv@opencascade.com>
Tue, 15 Dec 2009 16:09:46 +0000 (16:09 +0000)
committerouv <ouv@opencascade.com>
Tue, 15 Dec 2009 16:09:46 +0000 (16:09 +0000)
idl/SALOME_Notebook.idl
src/Notebook/SALOME_Notebook.cxx
src/Notebook/SALOME_Notebook.hxx

index 99d24af14c408b8935971ee552074c6ed85f6143..0c1d20edeab945e62fc04cd867aefa950fa0a690 100644 (file)
@@ -236,6 +236,9 @@ module SALOME
 
     //! Return string array containing information about parameters used by given parameter
     StringArray GetParameters( in string theParamName );
+
+    //! Return string array containing information about parameters used by given string attribute
+    StringArray GetAttributeParameters( in string theStringAttribute );
   };
 };
 
index 23fffd52bbc181007d0a911982f78185dc0c5f56..fee2f53788a1d53de301a98e9dd29d15c8d306c9 100644 (file)
@@ -1159,6 +1159,11 @@ SALOME::StringArray* SALOME_Notebook::GetParameters( const char* theParamName )
   return GetObjectParameters( PARAM_COMPONENT.c_str(), theParamName );
 }
 
+SALOME::StringArray* SALOME_Notebook::GetAttributeParameters( const char* theStringAttribute )
+{
+  return NULL;
+}
+
 int SALOME_Notebook::GetNewId()
 {
   return ++myMaxId;
index fc8ec47bfca6f5e94546aef1b28b4282f8a94926..46be534e6aa4d81aac81aebc35c1521693b2a792 100644 (file)
@@ -79,6 +79,7 @@ public:
   virtual char*                Dump();
   virtual SALOME::StringArray* GetObjectParameters( const char* theComponent, const char* theEntry );
   virtual SALOME::StringArray* GetParameters( const char* theParamName );
+  virtual SALOME::StringArray* GetAttributeParameters( const char* theStringAttribute );
 
   SALOME_Parameter* GetParameterPtr( const char* theParamName ) const;
   void              Update( bool theOnlyParameters );