19ea84ac5SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 39ea84ac5SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 49ea84ac5SAndrew Rist * or more contributor license agreements. See the NOTICE file 59ea84ac5SAndrew Rist * distributed with this work for additional information 69ea84ac5SAndrew Rist * regarding copyright ownership. The ASF licenses this file 79ea84ac5SAndrew Rist * to you under the Apache License, Version 2.0 (the 89ea84ac5SAndrew Rist * "License"); you may not use this file except in compliance 99ea84ac5SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 119ea84ac5SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 139ea84ac5SAndrew Rist * Unless required by applicable law or agreed to in writing, 149ea84ac5SAndrew Rist * software distributed under the License is distributed on an 159ea84ac5SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 169ea84ac5SAndrew Rist * KIND, either express or implied. See the License for the 179ea84ac5SAndrew Rist * specific language governing permissions and limitations 189ea84ac5SAndrew Rist * under the License. 19cdf0e10cSrcweir * 209ea84ac5SAndrew Rist *************************************************************/ 219ea84ac5SAndrew Rist 229ea84ac5SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _MANAGER_HXX 25cdf0e10cSrcweir #define _MANAGER_HXX 26cdf0e10cSrcweir 27cdf0e10cSrcweir #include "wincommon.hxx" 28cdf0e10cSrcweir 29cdf0e10cSrcweir #ifndef _COM_SUN_STAR_MEDIA_XMANAGER_HDL_ 30cdf0e10cSrcweir #include "com/sun/star/media/XManager.hdl" 31cdf0e10cSrcweir #endif 32cdf0e10cSrcweir 33cdf0e10cSrcweir // ----------- 34cdf0e10cSrcweir // - Manager - 35cdf0e10cSrcweir // ----------- 36cdf0e10cSrcweir 37cdf0e10cSrcweir namespace avmedia { namespace win { 38cdf0e10cSrcweir 39cdf0e10cSrcweir class Manager : public ::cppu::WeakImplHelper2 < ::com::sun::star::media::XManager, 40cdf0e10cSrcweir ::com::sun::star::lang::XServiceInfo > 41cdf0e10cSrcweir { 42cdf0e10cSrcweir public: 43cdf0e10cSrcweir 44*46880872SDamjan Jovanovic Manager( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext ); 45cdf0e10cSrcweir ~Manager(); 46cdf0e10cSrcweir 47cdf0e10cSrcweir // XManager 48cdf0e10cSrcweir virtual ::com::sun::star::uno::Reference< ::com::sun::star::media::XPlayer > SAL_CALL createPlayer( const ::rtl::OUString& aURL ) throw (::com::sun::star::uno::RuntimeException); 49cdf0e10cSrcweir 50cdf0e10cSrcweir // XServiceInfo 51cdf0e10cSrcweir virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException); 52cdf0e10cSrcweir virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException); 53cdf0e10cSrcweir virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException); 54*46880872SDamjan Jovanovic 55*46880872SDamjan Jovanovic // Helper functions. 56*46880872SDamjan Jovanovic static ::rtl::OUString getImplementationName_Static(); 57*46880872SDamjan Jovanovic static ::com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(); 58*46880872SDamjan Jovanovic 59cdf0e10cSrcweir private: 60cdf0e10cSrcweir 61*46880872SDamjan Jovanovic ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > mxContext; 62cdf0e10cSrcweir }; 63cdf0e10cSrcweir 64cdf0e10cSrcweir } // namespace win 65cdf0e10cSrcweir } // namespace avmedia 66cdf0e10cSrcweir 67cdf0e10cSrcweir #endif // _MANAGER_HXX 68