Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / performance-tests / Memory / IORsize / Foo_i.h
blob007c7f38043bf8856f00f6f8e4ec5512e50d6672
1 #ifndef FOO_I_H
2 #define FOO_I_H
3 #include /**/ "ace/pre.h"
5 #include "TestS.h"
7 #if defined (_MSC_VER)
8 # pragma warning(push)
9 # pragma warning (disable:4250)
10 #endif /* _MSC_VER */
12 /// Implement the Test::Hello interface
13 class Foo_i
14 : public virtual POA_Test::Foo
16 public:
17 Foo_i (CORBA::ORB_ptr p)
18 : orb_ (CORBA::ORB::_duplicate (p)) {}
20 private:
21 CORBA::ORB_var orb_;
24 #if defined(_MSC_VER)
25 # pragma warning(pop)
26 #endif /* _MSC_VER */
28 #include /**/ "ace/post.h"
29 #endif /*FOO_I_H*/