LibreOffice Module shell (master) 1
SysShExec.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#ifndef INCLUDED_SHELL_SOURCE_WIN32_SYSSHEXEC_HXX
21#define INCLUDED_SHELL_SOURCE_WIN32_SYSSHEXEC_HXX
22
24#include <osl/mutex.hxx>
25#include <com/sun/star/lang/XServiceInfo.hpp>
26#include <com/sun/star/uno/XComponentContext.hpp>
27
28#include <com/sun/star/system/XSystemShellExecute.hpp>
29
30
31
32
34{
35protected:
36 osl::Mutex m_aMutex;
37};
38
40 public CSysShExecBase,
41 public cppu::WeakComponentImplHelper<
42 css::system::XSystemShellExecute,
43 css::lang::XServiceInfo >
44{
45 css::uno::Reference< css::uno::XComponentContext > m_xContext;
46 // to put back all the inits with COINIT_MULTITHREADED if needed
48
49public:
50 explicit CSysShExec(const css::uno::Reference< css::uno::XComponentContext >& xContext);
52
53
54 // XSystemShellExecute
55
56
57 virtual void SAL_CALL execute( const OUString& aCommand, const OUString& aParameter, sal_Int32 nFlags ) override;
58
59
60 // XServiceInfo
61
62
63 virtual OUString SAL_CALL getImplementationName( ) override;
64
65 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
66
67 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
68};
69
70#endif
71
72/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
osl::Mutex m_aMutex
Definition: SysShExec.hxx:36
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
Definition: SysShExec.cxx:420
virtual OUString SAL_CALL getImplementationName() override
Definition: SysShExec.cxx:415
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: SysShExec.cxx:425
virtual void SAL_CALL execute(const OUString &aCommand, const OUString &aParameter, sal_Int32 nFlags) override
Definition: SysShExec.cxx:211
CSysShExec(const css::uno::Reference< css::uno::XComponentContext > &xContext)
Definition: SysShExec.cxx:152
int mnNbCallCoInitializeExForReinit
Definition: SysShExec.hxx:47
css::uno::Reference< css::uno::XComponentContext > m_xContext
Definition: SysShExec.hxx:45
unsigned char sal_Bool