diff options
author | jha <jha@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-30 19:32:33 +0000 |
---|---|---|
committer | jha <jha@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-30 19:32:33 +0000 |
commit | 231969a6f64176f994c43542f8f721a70cf56a95 (patch) | |
tree | 57d830ed0f4be86f6c46ccf2bec877bf5dd63a07 /ace/Configuration.h | |
parent | 5ce9ef47a2741413caa701324ba7beaa65b83162 (diff) | |
download | ATCD-231969a6f64176f994c43542f8f721a70cf56a95.tar.gz |
Committing changes made after the merge from the mainline.
Diffstat (limited to 'ace/Configuration.h')
-rw-r--r-- | ace/Configuration.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ace/Configuration.h b/ace/Configuration.h index 4ccf8ea03b9..62593cd4d63 100644 --- a/ace/Configuration.h +++ b/ace/Configuration.h @@ -251,6 +251,22 @@ public: int create = 1); /** + * Exports the configuration database to filename. If <filename> is + * already present, it is overwritten. This function is deprecated and + * will be removed in a future version of ACE. Please use either + * ACE_Registry_ImpExp or ACE_Ini_ImpExp instead. + */ + int export_config (const ACE_TCHAR* filename); + + /** + * Imports the configuration database from filename. Any existing + * data is not removed. This function is deprecated and will be + * removed in a future version of ACE. Please use ACE_Registry_ImpExp + * or ACE_Ini_ImpExp instead. + */ + int import_config (const ACE_TCHAR* filename); + + /** * Determine if the contents of this object is the same as the * contents of the object on the right hand side. * Returns 1 (True) if they are equal and 0 (False) if they are not equal |