User: hr Date: 2007-08-02 14:34:51+0000 Modified: dba/reportdesign/source/filter/xml/xmlfilter.hxx
Log: INTEGRATION: CWS rpt23fix01 (1.2.2); FILE MERGED 2007/07/12 12:59:57 oj 1.2.2.1: #i77832# #i77146# impl group on and interval File Changes: Directory: /dba/reportdesign/source/filter/xml/ =============================================== File [changed]: xmlfilter.hxx Url: http://dba.openoffice.org/source/browse/dba/reportdesign/source/filter/xml/xmlfilter.hxx?r1=1.2&r2=1.3 Delta lines: +13 -4 -------------------- --- xmlfilter.hxx 2007-07-09 11:56:18+0000 1.2 +++ xmlfilter.hxx 2007-08-02 14:34:48+0000 1.3 @@ -132,8 +132,10 @@ { public: DECLARE_STL_USTRINGACCESS_MAP(Sequence<PropertyValue>,TPropertyNameMap); - + DECLARE_STL_USTRINGACCESS_MAP( Reference<XFunction> ,TGroupFunctionMap); private: + + TGroupFunctionMap m_aFunctions; com::sun::star::uno::Any m_aViewSettings; Reference< XComponent > m_xSrcDoc; mutable ::std::auto_ptr<SvXMLTokenMap> m_pDocElemTokenMap; @@ -225,6 +227,13 @@ inline UniReference < XMLPropertySetMapper > GetRowStylesPropertySetMapper() const { return m_xRowStylesPropertySetMapper; } inline UniReference < XMLPropertySetMapper > GetTableStylesPropertySetMapper() const { return m_xTableStylesPropertySetMapper; } static ::rtl::OUString convertFormula(const ::rtl::OUString& _sFormula); + /** inserts a new function + * + * \param _xFunction + */ + void insertFunction(const ::com::sun::star::uno::Reference< ::com::sun::star::report::XFunction > & _xFunction); + void removeFunction(const ::rtl::OUString& _sFunctionName); + inline const TGroupFunctionMap& getFunctions() const { return m_aFunctions; } virtual SvXMLImport& getGlobalContext(); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
