Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_TABLE_XTABLE_HDL
2 : #define INCLUDED_COM_SUN_STAR_TABLE_XTABLE_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/beans/XFastPropertySet.hdl"
7 : #include "com/sun/star/beans/XPropertySet.hdl"
8 : #include "com/sun/star/lang/IllegalArgumentException.hdl"
9 : #include "com/sun/star/lang/XComponent.hdl"
10 : namespace com { namespace sun { namespace star { namespace table { class XCellCursor; } } } }
11 : #include "com/sun/star/table/XCellRange.hdl"
12 : #include "com/sun/star/table/XColumnRowRange.hdl"
13 : #include "com/sun/star/uno/RuntimeException.hdl"
14 : #include "com/sun/star/util/XModifiable.hdl"
15 : #include "com/sun/star/uno/Reference.h"
16 : #include "cppu/macros.hxx"
17 : #include "sal/types.h"
18 :
19 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
20 :
21 : namespace com { namespace sun { namespace star { namespace table {
22 :
23 35 : class SAL_NO_VTABLE XTable : public css::lang::XComponent, public css::table::XCellRange, public css::table::XColumnRowRange, public css::util::XModifiable, public css::beans::XPropertySet, public css::beans::XFastPropertySet
24 : {
25 : public:
26 :
27 : // Attributes
28 : virtual ::sal_Int32 SAL_CALL getRowCount() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::sal_Int32 SAL_CALL getColumnCount() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 :
31 : // Methods
32 : virtual ::com::sun::star::uno::Reference< css::table::XCellCursor > SAL_CALL createCursor() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual ::com::sun::star::uno::Reference< css::table::XCellCursor > SAL_CALL createCursorByRange( const ::com::sun::star::uno::Reference< css::table::XCellRange >& Range ) /* throw (css::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) */ = 0;
34 :
35 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
36 :
37 : protected:
38 35 : ~XTable() throw () {} // avoid warnings about virtual members and non-virtual dtor
39 : };
40 :
41 :
42 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::table::XTable const *);
43 : } } } }
44 :
45 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::table::XTable > *) SAL_THROW(());
46 :
47 : #endif
|