Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_SHEET_XSOLVER_HDL
2 : #define INCLUDED_COM_SUN_STAR_SHEET_XSOLVER_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/sheet/SolverConstraint.hdl"
7 : namespace com { namespace sun { namespace star { namespace sheet { class XSpreadsheetDocument; } } } }
8 : #include "com/sun/star/table/CellAddress.hdl"
9 : #include "com/sun/star/uno/RuntimeException.hdl"
10 : #include "com/sun/star/uno/XInterface.hdl"
11 : #include "com/sun/star/uno/Reference.h"
12 : #include "com/sun/star/uno/Sequence.h"
13 : #include "cppu/macros.hxx"
14 : #include "sal/types.h"
15 :
16 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
17 :
18 : namespace com { namespace sun { namespace star { namespace sheet {
19 :
20 0 : class SAL_NO_VTABLE XSolver : public css::uno::XInterface
21 : {
22 : public:
23 :
24 : // Attributes
25 : virtual ::com::sun::star::uno::Reference< css::sheet::XSpreadsheetDocument > SAL_CALL getDocument() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
26 : virtual void SAL_CALL setDocument( const ::com::sun::star::uno::Reference< css::sheet::XSpreadsheetDocument >& _document ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
27 : virtual css::table::CellAddress SAL_CALL getObjective() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual void SAL_CALL setObjective( const css::table::CellAddress& _objective ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::com::sun::star::uno::Sequence< css::table::CellAddress > SAL_CALL getVariables() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual void SAL_CALL setVariables( const ::com::sun::star::uno::Sequence< css::table::CellAddress >& _variables ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual ::com::sun::star::uno::Sequence< css::sheet::SolverConstraint > SAL_CALL getConstraints() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual void SAL_CALL setConstraints( const ::com::sun::star::uno::Sequence< css::sheet::SolverConstraint >& _constraints ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual ::sal_Bool SAL_CALL getMaximize() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL setMaximize( ::sal_Bool _maximize ) /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual ::sal_Bool SAL_CALL getSuccess() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
36 : virtual double SAL_CALL getResultValue() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
37 : virtual ::com::sun::star::uno::Sequence< double > SAL_CALL getSolution() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
38 :
39 : // Methods
40 : virtual void SAL_CALL solve() /* throw (::com::sun::star::uno::RuntimeException) */ = 0;
41 :
42 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
43 :
44 : protected:
45 0 : ~XSolver() throw () {} // avoid warnings about virtual members and non-virtual dtor
46 : };
47 :
48 :
49 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::sheet::XSolver const *);
50 : } } } }
51 :
52 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::sheet::XSolver > *) SAL_THROW(());
53 :
54 : #endif
|