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_RESULTSET_HXX 26cdf0e10cSrcweir #define _MYUCP_RESULTSET_HXX 27cdf0e10cSrcweir 28cdf0e10cSrcweir #include "rtl/ref.hxx" 29cdf0e10cSrcweir #include "ucbhelper/resultsethelper.hxx" 30cdf0e10cSrcweir 31cdf0e10cSrcweir #include "myucp_content.hxx" 32cdf0e10cSrcweir 33cdf0e10cSrcweir // @@@ Adjust namespace name. 34cdf0e10cSrcweir namespace myucp { 35cdf0e10cSrcweir 36cdf0e10cSrcweir class DynamicResultSet : public ::ucbhelper::ResultSetImplHelper 37cdf0e10cSrcweir { 38cdf0e10cSrcweir rtl::Reference< Content > m_xContent; 39cdf0e10cSrcweir com::sun::star::uno::Reference< 40cdf0e10cSrcweir com::sun::star::ucb::XCommandEnvironment > m_xEnv; 41cdf0e10cSrcweir 42cdf0e10cSrcweir private: 43cdf0e10cSrcweir virtual void initStatic(); 44cdf0e10cSrcweir virtual void initDynamic(); 45cdf0e10cSrcweir 46cdf0e10cSrcweir public: 47cdf0e10cSrcweir DynamicResultSet( 48cdf0e10cSrcweir const com::sun::star::uno::Reference< 49cdf0e10cSrcweir com::sun::star::lang::XMultiServiceFactory >& rxSMgr, 50cdf0e10cSrcweir const rtl::Reference< Content >& rxContent, 51cdf0e10cSrcweir const com::sun::star::ucb::OpenCommandArgument2& rCommand, 52cdf0e10cSrcweir const com::sun::star::uno::Reference< 53cdf0e10cSrcweir com::sun::star::ucb::XCommandEnvironment >& rxEnv ); 54cdf0e10cSrcweir }; 55cdf0e10cSrcweir 56cdf0e10cSrcweir } 57cdf0e10cSrcweir 58cdf0e10cSrcweir #endif 59