Major revamp of credential and trust handling code, PKIX engine still needs work.
[shibboleth/cpp-xmltooling.git] / xmltooling / QName.h
index 67d1d40..bb672f1 100644 (file)
 #include <algorithm>
 
 namespace xmltooling {
-    
+
+#if defined (_MSC_VER)
+    #pragma warning( push )
+    #pragma warning( disable : 4251 )
+#endif
+
     /**
      * A data structure for encapsulating XML QNames.
      * The Xerces class is too limited to use at the moment.
@@ -168,6 +173,10 @@ namespace xmltooling {
 #endif
     };
 
+#if defined (_MSC_VER)
+    #pragma warning( pop )
+#endif
+
     /**
      * Returns true iff op1's namespace lexically compares less than op2's namespace,
      * or if equal, iff op1's prefix lexically compares less than op2's prefix.