1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_UCB_SOURCE_UCP_FTP_FTPINTREQ_HXX
21 #define INCLUDED_UCB_SOURCE_UCP_FTP_FTPINTREQ_HXX
23 #include <com/sun/star/task/XInteractionDisapprove.hpp>
24 #include <com/sun/star/task/XInteractionApprove.hpp>
25 #include <com/sun/star/task/XInteractionRequest.hpp>
26 #include <cppuhelper/implbase.hxx>
31 class XInteractionApproveImpl
: public cppu::WeakImplHelper
<
32 css::task::XInteractionApprove
>
36 XInteractionApproveImpl();
38 virtual void SAL_CALL
select() override
;
40 bool isSelected() const { return m_bSelected
;}
48 class XInteractionDisapproveImpl
: public cppu::WeakImplHelper
<
49 css::task::XInteractionDisapprove
>
53 XInteractionDisapproveImpl();
55 virtual void SAL_CALL
select() override
;
59 class XInteractionRequestImpl
63 XInteractionRequestImpl();
65 bool approved() const;
67 css::uno::Reference
<css::task::XInteractionRequest
> const& getRequest() const
74 XInteractionApproveImpl
* const p1
;
75 XInteractionDisapproveImpl
* const p2
;
77 css::uno::Reference
<css::task::XInteractionRequest
> m_xRequest
;
79 XInteractionRequestImpl(const XInteractionRequestImpl
&) = delete;
80 XInteractionRequestImpl
& operator=(const XInteractionRequestImpl
&) = delete;
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */