Disable compiler warning.
authorcantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Sun, 27 Sep 2009 03:41:14 +0000 (03:41 +0000)
committercantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Sun, 27 Sep 2009 03:41:14 +0000 (03:41 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-xmltooling/branches/REL_1@653 de75baf8-a10c-0410-a50a-987c0e22f00f

xmltooling/security/CredentialCriteria.h

index ab73a68..342f2ea 100644 (file)
@@ -37,6 +37,11 @@ namespace xmlsignature {
 
 namespace xmltooling {
 
+#if defined (_MSC_VER)
+    #pragma warning( push )
+    #pragma warning( disable : 4251 )
+#endif
+
     /**
      * Class for specifying criteria by which a CredentialResolver should resolve credentials.
      */
@@ -240,6 +245,10 @@ namespace xmltooling {
         DSIGKeyInfoList* m_nativeKeyInfo;
         Credential* m_credential;
     };
+
+#if defined (_MSC_VER)
+    #pragma warning( pop )
+#endif
 };
 
 #endif /* __xmltooling_credcrit_h__ */