X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=samltest%2Finternal.h;h=d7c3ea2697e260e0e588fdaa64ac2a2b040fea35;hb=fc99d3a2a4d6b5d39c59863b514132b234a44d4d;hp=370dc4aa81f23f68b45d71e5a769cc50bb1d93f9;hpb=0beb48ce00d0b6a3f177f7d9b48af1870ee92190;p=shibboleth%2Fcpp-opensaml.git diff --git a/samltest/internal.h b/samltest/internal.h index 370dc4a..d7c3ea2 100644 --- a/samltest/internal.h +++ b/samltest/internal.h @@ -30,6 +30,7 @@ #include using namespace xmltooling; +using namespace xercesc; using namespace std; extern string data_path; @@ -154,7 +155,7 @@ class SAMLObjectValidatorBaseTestCase : virtual public SAMLObjectBaseTestCase { XMLObject* target; /** QName of the object to be tested */ - QName targetQName; + xmltooling::QName targetQName; /** Builder for XMLObjects of type targetQName */ const XMLObjectBuilder* builder; @@ -224,7 +225,7 @@ class SAMLObjectValidatorBaseTestCase : virtual public SAMLObjectBaseTestCase { * @param targetQName QName of the type of object to build * @returns new XMLObject of type targetQName */ - XMLObject* buildXMLObject(QName &targetQName) { + XMLObject* buildXMLObject(xmltooling::QName &targetQName) { // Create the builder on the first request only, for efficiency if (builder == NULL) { builder = XMLObjectBuilder::getBuilder(targetQName);