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 .
22 #include <com/sun/star/uno/Reference.hxx>
23 #include <com/sun/star/uno/Sequence.hxx>
25 namespace com::sun::star
{
27 class XInteractionContinuation
;
33 css::uno::Reference
< css::task::XInteractionContinuation
> const & rContinuation
,
34 css::uno::Reference
< t1
> * pContinuation
)
36 if (pContinuation
&& !pContinuation
->is())
38 pContinuation
->set(rContinuation
, css::uno::UNO_QUERY
);
39 if (pContinuation
->is())
45 template< class t1
, class t2
>
46 void getContinuations(
48 css::uno::Reference
< css::task::XInteractionContinuation
> > const & rContinuations
,
49 css::uno::Reference
< t1
> * pContinuation1
,
50 css::uno::Reference
< t2
> * pContinuation2
)
52 for (const auto& rContinuation
: rContinuations
)
54 if (setContinuation(rContinuation
, pContinuation1
))
56 if (setContinuation(rContinuation
, pContinuation2
))
61 template< class t1
, class t2
, class t3
>
62 void getContinuations(
64 css::uno::Reference
< css::task::XInteractionContinuation
> > const & rContinuations
,
65 css::uno::Reference
< t1
> * pContinuation1
,
66 css::uno::Reference
< t2
> * pContinuation2
,
67 css::uno::Reference
< t3
> * pContinuation3
)
69 for (const auto& rContinuation
: rContinuations
)
71 if (setContinuation(rContinuation
, pContinuation1
))
73 if (setContinuation(rContinuation
, pContinuation2
))
75 if (setContinuation(rContinuation
, pContinuation3
))
80 template< class t1
, class t2
, class t3
, class t4
>
81 void getContinuations(
83 css::uno::Reference
< css::task::XInteractionContinuation
> > const & rContinuations
,
84 css::uno::Reference
< t1
> * pContinuation1
,
85 css::uno::Reference
< t2
> * pContinuation2
,
86 css::uno::Reference
< t3
> * pContinuation3
,
87 css::uno::Reference
< t4
> * pContinuation4
)
89 for (const auto& rContinuation
: rContinuations
)
91 if (setContinuation(rContinuation
, pContinuation1
))
93 if (setContinuation(rContinuation
, pContinuation2
))
95 if (setContinuation(rContinuation
, pContinuation3
))
97 if (setContinuation(rContinuation
, pContinuation4
))
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */