summaryrefslogtreecommitdiff
path: root/ace/Codeset_Registry_db.cpp
diff options
context:
space:
mode:
authorPhil Mesnier <mesnier_p@ociweb.com>2003-03-04 22:51:36 +0000
committerPhil Mesnier <mesnier_p@ociweb.com>2003-03-04 22:51:36 +0000
commit157c9d90d540527856068770c830fe11ab1683ec (patch)
treeab7b0e8ae2d638651e66fdd1d01da64b27bd2e40 /ace/Codeset_Registry_db.cpp
parent5b838454bb61469688a72691c817bc2fb216d68e (diff)
downloadATCD-157c9d90d540527856068770c830fe11ab1683ec.tar.gz
ChangeLog tag: Tue Mar 4 13:54:52 2003 Phil Mesnier <mesnier_p@ociweb.com>
Diffstat (limited to 'ace/Codeset_Registry_db.cpp')
-rw-r--r--ace/Codeset_Registry_db.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/ace/Codeset_Registry_db.cpp b/ace/Codeset_Registry_db.cpp
new file mode 100644
index 00000000000..239e7f1c792
--- /dev/null
+++ b/ace/Codeset_Registry_db.cpp
@@ -0,0 +1,23 @@
+/* $Id$
+ * Codeset registry DB, generated Fri Feb 28 21:01:30 2003
+ * source: code_set_registry1.2g.txt
+ *
+ * To populate the registry_db, construct a codeset registry text file based
+ * on the OSF's Character and Code Set Registry. See DCE RFC 40.1 for details
+ * on obtaining the full text for the current registry. Once you have composed
+ * a text file containing all the desired codeset information, build and run
+ * mkcsregdb. The source is in $ACE_ROOT/apps/mkcsregdb. It will generate a new
+ * copy of this file, with the registry_db_ array properly initialized.
+ */
+
+#include "ace/Codeset_Registry.h"
+
+ACE_Codeset_Registry::registry_entry
+ACE_Codeset_Registry::registry_db_[] =
+{
+ {"ISO 8859-1:1987; Latin Alphabet No. 1","ASCII",0x00010001,1,{0x0011},1},
+ {"IBM-1047 (CCSID 01047); Latin-1 Open System","EBCDIC",0x10020417,1,{0x0011},1}
+};
+
+size_t ACE_Codeset_Registry::num_registry_entries_ = 2;
+