diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-05-27 21:01:26 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-05-27 21:01:26 +0000 |
commit | f82d8d492590e45b7ab4e3993b88b3ea1a0ec845 (patch) | |
tree | b2eb4f48a2bfbcda079ae9ed7db59d8f5fae2bf2 /ACEXML | |
parent | 2dce7c576ead9127ac0798cd5c7409dfb993057e (diff) | |
download | ATCD-f82d8d492590e45b7ab4e3993b88b3ea1a0ec845.tar.gz |
ChangeLogTag:Mon May 27 15:59:17 2002 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'ACEXML')
-rw-r--r-- | ACEXML/ACEXML.dsw | 12 | ||||
-rw-r--r-- | ACEXML/common/XML_Codecs.cpp | 8 | ||||
-rw-r--r-- | ACEXML/common/XML_Codecs.h | 2 | ||||
-rw-r--r-- | ACEXML/common/XML_Common.dsp | 8 |
4 files changed, 25 insertions, 5 deletions
diff --git a/ACEXML/ACEXML.dsw b/ACEXML/ACEXML.dsw index 42938933a20..096b5e0916d 100644 --- a/ACEXML/ACEXML.dsw +++ b/ACEXML/ACEXML.dsw @@ -45,6 +45,18 @@ Package=<4> ###############################################################################
+Project: "XML_Svc_Conf_Parser"=.\apps\svcconf\XML_Svc_Conf_Parser.dsp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
Global:
Package=<5>
diff --git a/ACEXML/common/XML_Codecs.cpp b/ACEXML/common/XML_Codecs.cpp index 7bd66536e45..cf3b27af97d 100644 --- a/ACEXML/common/XML_Codecs.cpp +++ b/ACEXML/common/XML_Codecs.cpp @@ -40,8 +40,8 @@ ACEXML_Base64::encode (const ACEXML_Char* input, ACEXML_Char[encode_len+1], 0); - for (size_t i = 0; i < encode_len; ++i) - result[i] = (ACEXML_Char)encodedBuf[i]; + for (size_t j = 0; j < encode_len; ++j) + result[j] = (ACEXML_Char)encodedBuf[j]; result[encode_len] = 0; @@ -87,8 +87,8 @@ ACEXML_Base64::decode (const ACEXML_Char* input, ACEXML_Char[decode_len+1], 0); - for (size_t i = 0; i < decode_len; ++i) - result[i] = (ACEXML_Char)decodedBuf[i]; + for (size_t j = 0; j < decode_len; ++j) + result[j] = (ACEXML_Char)decodedBuf[j]; result[decode_len] = 0; diff --git a/ACEXML/common/XML_Codecs.h b/ACEXML/common/XML_Codecs.h index 84d45cc1e27..ee65c8d915a 100644 --- a/ACEXML/common/XML_Codecs.h +++ b/ACEXML/common/XML_Codecs.h @@ -33,7 +33,7 @@ * canonical form before encoding. * */ -class ACE_Export ACEXML_Base64 : public ACE_Base64 +class ACEXML_Export ACEXML_Base64 : public ACE_Base64 { public: diff --git a/ACEXML/common/XML_Common.dsp b/ACEXML/common/XML_Common.dsp index 9c1a34fe149..9ce2d7ab668 100644 --- a/ACEXML/common/XML_Common.dsp +++ b/ACEXML/common/XML_Common.dsp @@ -156,6 +156,10 @@ SOURCE=.\Validator.cpp # End Source File
# Begin Source File
+SOURCE=.\XML_Codecs.cpp
+# End Source File
+# Begin Source File
+
SOURCE=.\XMLFilterImpl.cpp
# End Source File
# End Group
@@ -256,6 +260,10 @@ SOURCE=.\Validator.h # End Source File
# Begin Source File
+SOURCE=.\XML_Codecs.h
+# End Source File
+# Begin Source File
+
SOURCE=.\XML_Types.h
# End Source File
# Begin Source File
|