#include "stdafx.h" #using #include #using #using using namespace System; __gc class Server { public: Server(); public: void run( void ); private: Ics::CORBA::ORB *m_oOrb; Ics::PortableServer::POA *m_oRootPOA; }; __gc class GreetingsImpl: public Hello::GreetingsPOA { public: String* hello( String* a_strName ); };