Implementing your own Interfaces
From Apache OpenOffice Wiki
< Documentation | DevGuide
- Class Definition with Helper Template Classes
- Implementing your own Interfaces
- Providing a Single Factory Using a Helper Method
- Write Registration Info Using a Helper Method
- Provide Implementation Environment
- Implementing without Helpers
- Storing the Service Manager for Further Use
- Create Instance with Arguments
- Multiple Components in One Dynamic Link Library
- Building and Testing C++ Components
For the my_module.XSomething
interface, add a string to be returned that informs the caller when methodOne()
was called successfully.
OUString MyService2Impl::methodOne( OUString const & str )
throw (RuntimeException)
{
return OUString( RTL_CONSTASCII_USTRINGPARAM(
"called methodOne() of MyService2 implementation: ") ) + str;
}
Content on this page is licensed under the Public Documentation License (PDL). |