diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-05-01 18:54:37 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:09 +0200 |
commit | b24ef80b521ce1e40fcf80edba4a158d90e42866 (patch) | |
tree | ad3be332cc10264a4185ca7c6323bea395aabd00 /udkapi | |
parent | 392706b5f743b2f989ba5a120bbb31c2296bf902 (diff) |
*api: document all modules in modules.idl
Change-Id: I1c0c89f515f06bd14b659836d777aa705a6f03d6
Diffstat (limited to 'udkapi')
-rw-r--r-- | udkapi/com/sun/star/udk-modules.idl | 19 |
1 files changed, 16 insertions, 3 deletions
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 {}; |