Files
libreoffice/odk/examples/DevelopersGuide/Spreadsheet/XExampleAddIn.idl
Vladimir Glazounov e932ab9579 INTEGRATION: CWS sdk02 (1.1.2); FILE ADDED
2003/05/09 11:32:08 jsc 1.1.2.1: #109045# insert new and remove example zip file
2003-06-10 09:41:51 +00:00

31 lines
780 B
Plaintext

#ifndef _COM_SUN_STAR_SHEET_ADDIN_XEXAMPLEADDIN_IDL_
#define _COM_SUN_STAR_SHEET_ADDIN_XEXAMPLEADDIN_IDL_
#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/sheet/XVolatileResult.idl>
module com {
module sun {
module star {
module sheet {
module addin {
/// The interface that the example addin implements
interface XExampleAddIn : com::sun::star::uno::XInterface
{
/// Sample function that just increments a value.
long getIncremented( [in] long nValue );
/// Sample function that returns a volatile result.
com::sun::star::sheet::XVolatileResult getCounter( [in] string aName );
};
};
};
};
};
};
#endif