summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-13 08:14:56 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-13 08:14:56 +0000
commit1f4940fd68f5bb62976bdd3c806edbbe833d2574 (patch)
treeaa5707b4bd612c347b208190ebd520fa36e4a461
parent4ce426b20a5fd3603df683aad6366c7c87695578 (diff)
downloadATCD-1f4940fd68f5bb62976bdd3c806edbbe833d2574.tar.gz
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.cpp6
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.h6
2 files changed, 8 insertions, 4 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.cpp b/TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.cpp
index d2b9e1309a1..233e1cc0fe2 100644
--- a/TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.cpp
+++ b/TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.cpp
@@ -19,7 +19,8 @@ void
Locator_XMLHandler::startElement (const ACEXML_Char*,
const ACEXML_Char*,
const ACEXML_Char* qName,
- ACEXML_Attributes* attrs ACEXML_ENV_ARG_DECL_NOT_USED)
+ ACEXML_Attributes* attrs)
+ throw (ACEXML_SAXException);
{
ACE_ASSERT (qName != 0);
if (ACE_OS::strcasecmp (qName, SERVER_INFO_TAG) == 0)
@@ -68,7 +69,8 @@ Locator_XMLHandler::startElement (const ACEXML_Char*,
void
Locator_XMLHandler::endElement (const ACEXML_Char*,
const ACEXML_Char*,
- const ACEXML_Char* qName ACEXML_ENV_ARG_DECL_NOT_USED)
+ const ACEXML_Char* qName)
+ throw (ACEXML_SAXException);
{
ACE_ASSERT(qName != 0);
if (ACE_OS::strcasecmp (qName, SERVER_INFO_TAG) == 0
diff --git a/TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.h b/TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.h
index e8745f48799..fc7890c4d92 100644
--- a/TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.h
+++ b/TAO/orbsvcs/ImplRepo_Service/Locator_XMLHandler.h
@@ -61,11 +61,13 @@ public:
virtual void startElement (const ACEXML_Char* namespaceURI,
const ACEXML_Char* localName,
const ACEXML_Char* qName,
- ACEXML_Attributes* atts ACEXML_ENV_ARG_DECL);
+ ACEXML_Attributes* atts)
+ throw (ACEXML_SAXException);
virtual void endElement (const ACEXML_Char* namespaceURI,
const ACEXML_Char* localName,
- const ACEXML_Char* qName ACEXML_ENV_ARG_DECL);
+ const ACEXML_Char* qName)
+ throw (ACEXML_SAXException);
private: