Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_PLUGIN_PLUGINDESCRIPTION_HDL
2 : #define INCLUDED_COM_SUN_STAR_PLUGIN_PLUGINDESCRIPTION_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "cppu/macros.hxx"
7 : #include "rtl/ustring.hxx"
8 :
9 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
10 :
11 : namespace com { namespace sun { namespace star { namespace plugin {
12 :
13 : #ifdef SAL_W32
14 : # pragma pack(push, 8)
15 : #endif
16 :
17 0 : struct PluginDescription {
18 : inline PluginDescription() SAL_THROW(());
19 :
20 : inline PluginDescription(const ::rtl::OUString& PluginName_, const ::rtl::OUString& Mimetype_, const ::rtl::OUString& Extension_, const ::rtl::OUString& Description_) SAL_THROW(());
21 :
22 : ::rtl::OUString PluginName;
23 : ::rtl::OUString Mimetype;
24 : ::rtl::OUString Extension;
25 : ::rtl::OUString Description;
26 : };
27 :
28 : #ifdef SAL_W32
29 : # pragma pack(pop)
30 : #endif
31 :
32 :
33 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::plugin::PluginDescription const *);
34 : } } } }
35 :
36 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const css::plugin::PluginDescription *) SAL_THROW(());
37 :
38 : #endif
|