diff options
author | npower Developer <npower@openoffice.org> | 2010-03-29 09:39:35 +0100 |
---|---|---|
committer | npower Developer <npower@openoffice.org> | 2010-03-29 09:39:35 +0100 |
commit | da50ceb5c035c8b70b4483d32e02851902bd7421 (patch) | |
tree | 91680f16458d073fe07f332c0e4d4db71bc8ef75 /basic/source/inc/errobject.hxx | |
parent | 6b9635f6b2d62537052bdc11ec84247d3bc72832 (diff) |
ab75: #i110417# initial ( untested ) implementation
Diffstat (limited to 'basic/source/inc/errobject.hxx')
-rw-r--r-- | basic/source/inc/errobject.hxx | 16 |
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 |