diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2010-10-01 23:35:54 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2010-10-01 23:35:54 +0200 |
commit | 414045a1a6fdc7ef1142336961495f32a38d8a43 (patch) | |
tree | f7f41f7bb4d5d8b87eac8ed80b7eb2ca91a6ab12 /cppuhelper | |
parent | d1b28054d9536acea0cc724da69c9a5fd3d2cace (diff) |
Add short comment about what the WeakImplHelper* classes do
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/inc/cppuhelper/implbase1.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cppuhelper/inc/cppuhelper/implbase1.hxx b/cppuhelper/inc/cppuhelper/implbase1.hxx index bf42186f061e..08348cdf5efc 100644 --- a/cppuhelper/inc/cppuhelper/implbase1.hxx +++ b/cppuhelper/inc/cppuhelper/implbase1.hxx @@ -90,6 +90,10 @@ namespace cppu @derive Inherit from this class giving your interface(s) to be implemented as template argument(s). Your sub class defines method implementations for these interface(s). + + These classes are used when you implement your UNO component. + WeakImplHelper1 till WeakImplHelper12 can be used when you want + to implement 1 till 12 interfaces in your component. */ template< class Ifc1 > class SAL_NO_VTABLE WeakImplHelper1 |