summaryrefslogtreecommitdiff
path: root/ace/Configuration.h
diff options
context:
space:
mode:
authorjha <jha@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-30 19:32:33 +0000
committerjha <jha@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-30 19:32:33 +0000
commit231969a6f64176f994c43542f8f721a70cf56a95 (patch)
tree57d830ed0f4be86f6c46ccf2bec877bf5dd63a07 /ace/Configuration.h
parent5ce9ef47a2741413caa701324ba7beaa65b83162 (diff)
downloadATCD-231969a6f64176f994c43542f8f721a70cf56a95.tar.gz
Committing changes made after the merge from the mainline.
Diffstat (limited to 'ace/Configuration.h')
-rw-r--r--ace/Configuration.h16
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