// // Implementation of the character testing interface in C++. // #ifndef TEST_FIXED_IMPL_H #define TEST_FIXED_IMPL_H #include class TestFixed_impl : public POA_TestFixeds { public: TestFixed_impl(); virtual FixedType testFixed(const FixedType&) throw(CORBA::SystemException); }; #endif