summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2000-03-09 17:12:52 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2000-03-09 17:12:52 +0000
commitae46daa2b1f288f4d37f412e44510bc965e4b37a (patch)
treebb09cf9a6bc56595cc616c4d99e0091a3f9227cb
parent02e2e2b19b541a562ca4bbcadb6ed627e7171a09 (diff)
downloadATCD-ae46daa2b1f288f4d37f412e44510bc965e4b37a.tar.gz
ChangeLogTag:Thu Mar 9 11:01:34 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--ace/Configuration.h12
4 files changed, 27 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 6f906206811..5b03ee43dd3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Mar 9 11:01:34 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Configuration.h: Changed export_config()/import_config() to
+ be virtual methods so users can change how the config files are
+ implemented. Thanks to Damien Dufour
+ <damien.dufour@horoquartz.fr> for reporting this.
+
Thu Mar 09 10:41:24 2000 Steve Huston <shuston@riverace.com>
* ace/NT_Service.(h cpp): Added !defined(ACE_HAS_PHARLAP) to the
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 6f906206811..5b03ee43dd3 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Thu Mar 9 11:01:34 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Configuration.h: Changed export_config()/import_config() to
+ be virtual methods so users can change how the config files are
+ implemented. Thanks to Damien Dufour
+ <damien.dufour@horoquartz.fr> for reporting this.
+
Thu Mar 09 10:41:24 2000 Steve Huston <shuston@riverace.com>
* ace/NT_Service.(h cpp): Added !defined(ACE_HAS_PHARLAP) to the
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 6f906206811..5b03ee43dd3 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Thu Mar 9 11:01:34 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * ace/Configuration.h: Changed export_config()/import_config() to
+ be virtual methods so users can change how the config files are
+ implemented. Thanks to Damien Dufour
+ <damien.dufour@horoquartz.fr> for reporting this.
+
Thu Mar 09 10:41:24 2000 Steve Huston <shuston@riverace.com>
* ace/NT_Service.(h cpp): Added !defined(ACE_HAS_PHARLAP) to the
diff --git a/ace/Configuration.h b/ace/Configuration.h
index 7a4ec95e94a..8b6e7e6083e 100644
--- a/ace/Configuration.h
+++ b/ace/Configuration.h
@@ -218,18 +218,18 @@ public:
const ACE_TString& path_in,
ACE_Configuration_Section_Key& key_out,
int create = 1);
- // expands <path_in> to <key_out> from <key>. If create is true,
+ // Expands <path_in> to <key_out> from <key>. If create is true,
// the subsections are created. Returns 0 on success, non zero on
// error The path consists of sections separated by the backslash
// '\'.
- int export_config (const TCHAR* filename);
- // exports the configuration database to filename. if <filename> is
+ virtual int export_config (const TCHAR* filename);
+ // Exports the configuration database to filename. If <filename> is
// alredy present, it is overwritten.
- int import_config (const TCHAR* filename);
- // imports the configuration database from filename. Any existing data
- // is not removed.
+ virtual int import_config (const TCHAR* filename);
+ // Imports the configuration database from filename. Any existing
+ // data is not removed.
protected:
ACE_Configuration (void);