Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_2289_Regression / MyInterfaceImpl.cpp
blob91123d63a20a946a9c2e647b35d895f3558f4134
2 #include "MyInterfaceImpl.h"
4 const char*
5 MyInterfaceImpl::my_string = "a string";
7 MyInterfaceImpl::MyInterfaceImpl (CORBA::ORB_ptr orb)
8 : orb_ (CORBA::ORB::_duplicate (orb))
11 CORBA::Boolean
12 MyInterfaceImpl::myMethod (const char* mystring)
14 return mystring == my_string;