summaryrefslogtreecommitdiffstats
path: root/basic/source/inc/errobject.hxx
diff options
context:
space:
mode:
authornpower Developer <npower@openoffice.org>2010-03-29 09:39:35 +0100
committernpower Developer <npower@openoffice.org>2010-03-29 09:39:35 +0100
commitda50ceb5c035c8b70b4483d32e02851902bd7421 (patch)
tree91680f16458d073fe07f332c0e4d4db71bc8ef75 /basic/source/inc/errobject.hxx
parentCWS-TOOLING: integrate CWS kso43 (diff)
downloadcore-da50ceb5c035c8b70b4483d32e02851902bd7421.tar.gz
core-da50ceb5c035c8b70b4483d32e02851902bd7421.zip
ab75: #i110417# initial ( untested ) implementation
Diffstat (limited to 'basic/source/inc/errobject.hxx')
-rw-r--r--basic/source/inc/errobject.hxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/basic/source/inc/errobject.hxx b/basic/source/inc/errobject.hxx
new file mode 100644
index 000000000000..51d4b6caa4f9
--- /dev/null
+++ b/basic/source/inc/errobject.hxx
@@ -0,0 +1,16 @@
+#ifndef ERROBJECT_HXX
+#define ERROBJECT_HXX
+#include "sbunoobj.hxx"
+#include <ooo/vba/XErrObject.hpp>
+
+
+class SbxErrObject : public SbUnoObject
+{
+ com::sun::star::uno::Reference< ooo::vba::XErrObject > m_xErr;
+ SbxErrObject( const String& aName_, const com::sun::star::uno::Any& aUnoObj_ );
+ ~SbxErrObject();
+public:
+ static SbxVariableRef getErrObject();
+ static com::sun::star::uno::Reference< ooo::vba::XErrObject > getUnoErrObject();
+};
+#endif