#ifndef __com_sun_star_scripting_storage_XScriptStore_idl__ #define __com_sun_star_scripting_storage_XScriptStore_idl__ #ifndef __com_sun_star_uno_XInterface_idl__ #include #endif #ifndef __com_sun_star_uno_XStream_idl__ #include #endif module drafts { module com { module sun { module star { module scripting { module storage { //============================================================================== /** Allows an element/file to be created in the scripting space of either the document or application. */ interface XScriptStore : ::com::sun::star::uno::XInterface { //------------------------------------------------------------------------------ /** @returns if element with name is created, otherwise. /* boolean createDataStore([in] string name); //------------------------------------------------------------------------------ /** @returns if element with name is deleted, otherwise. */ boolean deleteDataStore([in] string name); //------------------------------------------------------------------------------ /** @returns com::sun::star::io::XStream for the element. */ com::sun::star::io::XStream getDataStore([in] string name); }; }; }; }; }; }; }; #endif