Files
libreoffice/odk/examples/DevelopersGuide/Components/CppComponent/some.idl
Vladimir Glazounov 412cd21dbe INTEGRATION: CWS sdk02 (1.1.2); FILE ADDED
2003/05/09 10:42:09 jsc 1.1.2.1: #109045# insert new and remove example zip file
2003-06-10 09:13:31 +00:00

23 lines
372 B
Plaintext

#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/lang/XInitialization.idl>
module my_module
{
interface XSomething : com::sun::star::uno::XInterface
{
string methodOne( [in] string val );
};
service MyService1
{
interface XSomething;
};
service MyService2
{
interface XSomething;
interface com::sun::star::lang::XInitialization;
};
};