summaryrefslogtreecommitdiff
path: root/ace/Configuration.h
diff options
context:
space:
mode:
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