Tag: cws_src680_warnings01 User: pl Date: 05/11/07 11:02:24 Modified: /dba/connectivity/inc/connectivity/ FValue.hxx
Log: RESYNC: (1.11-1.12); FILE MERGED File Changes: Directory: /dba/connectivity/inc/connectivity/ ============================================== File [changed]: FValue.hxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/inc/connectivity/FValue.hxx?r1=1.11.10.1&r2=1.11.10.2 Delta lines: +16 -3 -------------------- --- FValue.hxx 7 Nov 2005 14:42:53 -0000 1.11.10.1 +++ FValue.hxx 7 Nov 2005 19:02:21 -0000 1.11.10.2 @@ -69,6 +69,9 @@ #ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_ #include <com/sun/star/uno/Sequence.hxx> #endif +#ifndef _COM_SUN_STAR_SDBC_XROW_HPP_ +#include <com/sun/star/sdbc/XRow.hpp> +#endif namespace connectivity { @@ -358,6 +361,16 @@ // only use for anys ::com::sun::star::uno::Any getAny() const { return *(::com::sun::star::uno::Any*)m_aValue.m_pValue; } ::com::sun::star::uno::Any makeAny() const; + + /** + fetches a single value out of the row + @param _nPos the current column position + @param _nType the type of the current column + @param _xRow the row where to fetch the data from + */ + void fill(sal_Int32 _nPos, + sal_Int32 _nType, + const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRow>& _xRow); }; /// ORowSetValueDecorator decorates a ORowSetValue so the value is "refcounted" --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
