#ifndef _COM_SUN_STAR_SHEET_ADDIN_XEXAMPLEADDIN_IDL_ #define _COM_SUN_STAR_SHEET_ADDIN_XEXAMPLEADDIN_IDL_ #include #include 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