// // Implementation of the character testing interface in C++. // #ifndef TEST_IMPL_H #define TEST_IMPL_H #include class TestChars_impl : public POA_TestChars { public: TestChars_impl(); virtual CORBA::Char testChar(CORBA::Char) throw(CORBA::SystemException); virtual char* testString(const char*) throw(CORBA::SystemException); virtual CORBA::WChar testWChar(CORBA::WChar) throw(CORBA::SystemException); virtual CORBA::WChar* testWString(const CORBA::WChar*) throw(CORBA::SystemException); }; #endif