1*b3b486c3SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*b3b486c3SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*b3b486c3SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*b3b486c3SAndrew Rist  * distributed with this work for additional information
6*b3b486c3SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*b3b486c3SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*b3b486c3SAndrew Rist  * "License"); you may not use this file except in compliance
9*b3b486c3SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*b3b486c3SAndrew Rist  *
11*b3b486c3SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*b3b486c3SAndrew Rist  *
13*b3b486c3SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*b3b486c3SAndrew Rist  * software distributed under the License is distributed on an
15*b3b486c3SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b3b486c3SAndrew Rist  * KIND, either express or implied.  See the License for the
17*b3b486c3SAndrew Rist  * specific language governing permissions and limitations
18*b3b486c3SAndrew Rist  * under the License.
19*b3b486c3SAndrew Rist  *
20*b3b486c3SAndrew Rist  *************************************************************/
21*b3b486c3SAndrew Rist 
22*b3b486c3SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // @@@ Adjust multi-include-protection-ifdef.
25cdf0e10cSrcweir #ifndef _MYUCP_DATASUPPLIER_HXX
26cdf0e10cSrcweir #define _MYUCP_DATASUPPLIER_HXX
27cdf0e10cSrcweir 
28cdf0e10cSrcweir #include "rtl/ref.hxx"
29cdf0e10cSrcweir #include "ucbhelper/resultset.hxx"
30cdf0e10cSrcweir 
31cdf0e10cSrcweir // @@@ Adjust namespace name.
32cdf0e10cSrcweir namespace myucp {
33cdf0e10cSrcweir 
34cdf0e10cSrcweir struct DataSupplier_Impl;
35cdf0e10cSrcweir class Content;
36cdf0e10cSrcweir 
37cdf0e10cSrcweir class DataSupplier : public ucbhelper::ResultSetDataSupplier
38cdf0e10cSrcweir {
39cdf0e10cSrcweir 	DataSupplier_Impl* m_pImpl;
40cdf0e10cSrcweir 
41cdf0e10cSrcweir public:
42cdf0e10cSrcweir 	DataSupplier( const com::sun::star::uno::Reference<
43cdf0e10cSrcweir 				  	com::sun::star::lang::XMultiServiceFactory >& rxSMgr,
44cdf0e10cSrcweir 				  const rtl::Reference< Content >& rContent,
45cdf0e10cSrcweir 				  sal_Int32 nOpenMode );
46cdf0e10cSrcweir 	virtual ~DataSupplier();
47cdf0e10cSrcweir 
48cdf0e10cSrcweir 	virtual rtl::OUString queryContentIdentifierString( sal_uInt32 nIndex );
49cdf0e10cSrcweir 	virtual com::sun::star::uno::Reference<
50cdf0e10cSrcweir 				com::sun::star::ucb::XContentIdentifier >
51cdf0e10cSrcweir 	queryContentIdentifier( sal_uInt32 nIndex );
52cdf0e10cSrcweir 	virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContent >
53cdf0e10cSrcweir 	queryContent( sal_uInt32 nIndex );
54cdf0e10cSrcweir 
55cdf0e10cSrcweir 	virtual sal_Bool getResult( sal_uInt32 nIndex );
56cdf0e10cSrcweir 
57cdf0e10cSrcweir 	virtual sal_uInt32 totalCount();
58cdf0e10cSrcweir 	virtual sal_uInt32 currentCount();
59cdf0e10cSrcweir 	virtual sal_Bool isCountFinal();
60cdf0e10cSrcweir 
61cdf0e10cSrcweir 	virtual com::sun::star::uno::Reference< com::sun::star::sdbc::XRow >
62cdf0e10cSrcweir 	queryPropertyValues( sal_uInt32 nIndex  );
63cdf0e10cSrcweir 	virtual void releasePropertyValues( sal_uInt32 nIndex );
64cdf0e10cSrcweir 
65cdf0e10cSrcweir 	virtual void close();
66cdf0e10cSrcweir 
67cdf0e10cSrcweir 	virtual void validate()
68cdf0e10cSrcweir 		throw( com::sun::star::ucb::ResultSetException );
69cdf0e10cSrcweir };
70cdf0e10cSrcweir 
71cdf0e10cSrcweir }
72cdf0e10cSrcweir 
73cdf0e10cSrcweir #endif
74