summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-16 01:02:01 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-16 01:02:01 +0000
commit60a8b62cb6e02e1bb81fcde5b8f07a6bcb9ad175 (patch)
treec49f5e660837846190c6db4a317bdc82bdce3d88
parentccf3436e4c9bb3793e98615ef7aca486105199ad (diff)
downloadATCD-60a8b62cb6e02e1bb81fcde5b8f07a6bcb9ad175.tar.gz
Mon May 15 20:01:30 2000 Pradeep Gore <pradeep@cs.wustl.edu>
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Notify_Filter_i.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Notify_Filter_i.h b/TAO/orbsvcs/orbsvcs/Notify/Notify_Filter_i.h
index 86493c20b30..61397f2fec7 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Notify_Filter_i.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/Notify_Filter_i.h
@@ -29,6 +29,13 @@
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+#if defined(_MSC_VER)
+#if (_MSC_VER >= 1200)
+#pragma warning(push)
+#endif /* _MSC_VER >= 1200 */
+#pragma warning(disable:4250)
+#endif /* _MSC_VER */
+
class TAO_Notify_Export TAO_Notify_Filter_i : public POA_CosNotifyFilter::Filter,
public PortableServer::RefCountServantBase
{
@@ -200,5 +207,9 @@ private:
CONSTRAINT_EXPR_ENTRY;
};
+#if defined(_MSC_VER) && (_MSC_VER >= 1200)
+#pragma warning(pop)
+#endif /* _MSC_VER */
+
#include "ace/post.h"
#endif /* TAO_NOTIFY_FILTER_I_H */