LibreOffice Module ucb (master) 1
ftpintreq.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#pragma once
21
22#include <com/sun/star/task/XInteractionDisapprove.hpp>
23#include <com/sun/star/task/XInteractionApprove.hpp>
24#include <com/sun/star/task/XInteractionRequest.hpp>
26
27
28namespace ftp {
29
30 class XInteractionApproveImpl : public cppu::WeakImplHelper <
31 css::task::XInteractionApprove >
32 {
33 public:
34
36
37 virtual void SAL_CALL select() override;
38
39 bool isSelected() const { return m_bSelected;}
40
41 private:
42
44 };
45
46
47 class XInteractionDisapproveImpl : public cppu::WeakImplHelper <
48 css::task::XInteractionDisapprove >
49 {
50 public:
51
53
54 virtual void SAL_CALL select() override;
55 };
56
57
59 {
60 public:
61
63
64 bool approved() const;
65
66 css::uno::Reference<css::task::XInteractionRequest> const& getRequest() const
67 {
68 return m_xRequest;
69 }
70
71 private:
72
74
75 css::uno::Reference<css::task::XInteractionRequest> m_xRequest;
76
79 };
80
81}
82
83
84/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual void SAL_CALL select() override
Definition: ftpintreq.cxx:40
virtual void SAL_CALL select() override
Definition: ftpintreq.cxx:46
css::uno::Reference< css::task::XInteractionRequest > m_xRequest
Definition: ftpintreq.hxx:75
XInteractionRequestImpl(const XInteractionRequestImpl &)=delete
XInteractionRequestImpl & operator=(const XInteractionRequestImpl &)=delete
XInteractionApproveImpl * p1
Definition: ftpintreq.hxx:73
css::uno::Reference< css::task::XInteractionRequest > const & getRequest() const
Definition: ftpintreq.hxx:66
Definition of ftpcontentprovider.