Difference between revisions of "Documentation/DevGuide/WritingUNO/C++/Implementing your own Interfaces"

From Apache OpenOffice Wiki
Jump to: navigation, search
m
m (Robot: Changing Category:Writing UNO Components)
Line 18: Line 18:
 
</source>
 
</source>
 
{{PDL1}}
 
{{PDL1}}
[[Category: Writing UNO Components]]
+
 
 +
[[Category:Documentation/Developers Guide/Professional UNO]]

Revision as of 06:42, 4 June 2008




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).
Personal tools