From b24ef80b521ce1e40fcf80edba4a158d90e42866 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Wed, 1 May 2013 18:54:37 +0200 Subject: *api: document all modules in modules.idl Change-Id: I1c0c89f515f06bd14b659836d777aa705a6f03d6 --- udkapi/com/sun/star/udk-modules.idl | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'udkapi/com') diff --git a/udkapi/com/sun/star/udk-modules.idl b/udkapi/com/sun/star/udk-modules.idl index d33104b1f151..ad20cdf657fd 100644 --- a/udkapi/com/sun/star/udk-modules.idl +++ b/udkapi/com/sun/star/udk-modules.idl @@ -19,13 +19,26 @@ #ifndef __com_sun_star_modules_idl__ #define __com_sun_star_modules_idl__ -module com { module sun { module star { +/* note: this file contains documentation of the modules. + sub-modules of modules are documented here too so there aren't + lots of tiny documentation only files everywhere. +*/ + +module com { module sun { + +/// the module com::sun::star is the root module of the UNO API. +module star { /// Java beans-like property access and introspection. -module beans{}; +module beans {}; /// Interfaces for building bridges to other component models. -module bridge {}; +module bridge { + + /// interfaces for UNO bridge to OLE automation. + module oleautomation {}; + +}; /// Data exchange interfaces for inter-process communication. module connection {}; -- cgit