tdf#154285 Check upper bound of arguments in SbRtl_Minute function
[LibreOffice.git] / sfx2 / source / doc / exoticfileloadexception.hxx
blob9a4211d5d6f9018a6d0b37874e3bfdca72ab3cb1
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #ifndef INCLUDED_SFX2_EXOTICFILELOADEXCEPTION_HXX
11 #define INCLUDED_SFX2_EXOTICFILELOADEXCEPTION_HXX
13 #include <com/sun/star/task/XInteractionContinuation.hpp>
14 #include <com/sun/star/task/XInteractionRequest.hpp>
15 #include <comphelper/interaction.hxx>
16 #include <cppuhelper/implbase.hxx>
17 #include <rtl/ref.hxx>
19 class ExoticFileLoadException : public cppu::WeakImplHelper<css::task::XInteractionRequest>
21 // C++ interface
22 public:
23 ExoticFileLoadException(const OUString& rURL, const OUString& rFilterUIName);
24 bool isApprove() const;
26 // UNO interface
27 public:
28 virtual css::uno::Sequence<css::uno::Reference<css::task::XInteractionContinuation>>
29 SAL_CALL getContinuations() override
31 return m_lContinuations;
33 css::uno::Any SAL_CALL getRequest() override { return m_aRequest; }
35 // member
36 private:
37 css::uno::Any m_aRequest;
38 rtl::Reference<comphelper::OInteractionAbort> m_xAbort;
39 rtl::Reference<comphelper::OInteractionApprove> m_xApprove;
40 css::uno::Sequence<css::uno::Reference<css::task::XInteractionContinuation>> m_lContinuations;
43 #endif
45 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */