diff options
Diffstat (limited to 'include/vbahelper/vbafontbase.hxx')
-rw-r--r-- | include/vbahelper/vbafontbase.hxx | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/include/vbahelper/vbafontbase.hxx b/include/vbahelper/vbafontbase.hxx index 51c8c15990a4..1835554f9aa8 100644 --- a/include/vbahelper/vbafontbase.hxx +++ b/include/vbahelper/vbafontbase.hxx @@ -19,10 +19,27 @@ #ifndef INCLUDED_VBAHELPER_VBAFONTBASE_HXX #define INCLUDED_VBAHELPER_VBAFONTBASE_HXX +#include <exception> + +#include <com/sun/star/uno/Any.hxx> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/RuntimeException.hpp> #include <ooo/vba/XFontBase.hpp> -#include <com/sun/star/beans/XPropertySet.hpp> +#include <sal/types.h> +#include <vbahelper/vbadllapi.h> +#include <vbahelper/vbahelper.hxx> #include <vbahelper/vbahelperinterface.hxx> +namespace com { namespace sun { namespace star { + namespace beans { class XPropertySet; } + namespace container { class XIndexAccess; } + namespace uno { class XComponentContext; } +} } } + +namespace ooo { namespace vba { + class XHelperInterface; +} } + typedef InheritedHelperInterfaceWeakImpl< ov::XFontBase > VbaFontBase_BASE; class VBAHELPER_DLLPUBLIC VbaFontBase : public VbaFontBase_BASE |