Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / cppuhelper / queryinterface.hxx
blob0fe2f5a99605a1546a8fec5e53e32128071bad5f
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/.
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_CPPUHELPER_QUERYINTERFACE_HXX
21 #define INCLUDED_CPPUHELPER_QUERYINTERFACE_HXX
23 #include <sal/config.h>
24 #include <com/sun/star/uno/Any.hxx>
25 #include <com/sun/star/uno/Type.hxx>
26 #include <sal/types.h>
28 namespace cppu
31 /** Compares demanded type to given template argument types.
33 @tparam Interface1 interface type
34 @param rType demanded type
35 @param p1 interface pointer
36 @return acquired interface of demanded type or empty Any
38 template< class Interface1 >
39 inline css::uno::Any SAL_CALL queryInterface(
40 const css::uno::Type & rType,
41 Interface1 * p1 )
43 if (rType == Interface1::static_type())
44 return css::uno::Any( &p1, rType );
45 else
46 return css::uno::Any();
48 /** Compares demanded type to given template argument types.
50 @tparam Interface1 interface type
51 @tparam Interface2 interface type
52 @param rType demanded type
53 @param p1 interface pointer
54 @param p2 interface pointer
55 @return acquired interface of demanded type or empty Any
57 template< class Interface1, class Interface2 >
58 inline css::uno::Any SAL_CALL queryInterface(
59 const css::uno::Type & rType,
60 Interface1 * p1, Interface2 * p2 )
62 if (rType == Interface1::static_type())
63 return css::uno::Any( &p1, rType );
64 else if (rType == Interface2::static_type())
65 return css::uno::Any( &p2, rType );
66 else
67 return css::uno::Any();
69 /** Compares demanded type to given template argument types.
71 @tparam Interface1 interface type
72 @tparam Interface2 interface type
73 @tparam Interface3 interface type
74 @param rType demanded type
75 @param p1 interface pointer
76 @param p2 interface pointer
77 @param p3 interface pointer
78 @return acquired interface of demanded type or empty Any
80 template< class Interface1, class Interface2, class Interface3 >
81 inline css::uno::Any SAL_CALL queryInterface(
82 const css::uno::Type & rType,
83 Interface1 * p1, Interface2 * p2, Interface3 * p3 )
85 if (rType == Interface1::static_type())
86 return css::uno::Any( &p1, rType );
87 else if (rType == Interface2::static_type())
88 return css::uno::Any( &p2, rType );
89 else if (rType == Interface3::static_type())
90 return css::uno::Any( &p3, rType );
91 else
92 return css::uno::Any();
94 /** Compares demanded type to given template argument types.
96 @tparam Interface1 interface type
97 @tparam Interface2 interface type
98 @tparam Interface3 interface type
99 @tparam Interface4 interface type
100 @param rType demanded type
101 @param p1 interface pointer
102 @param p2 interface pointer
103 @param p3 interface pointer
104 @param p4 interface pointer
105 @return acquired interface of demanded type or empty Any
107 template< class Interface1, class Interface2, class Interface3, class Interface4 >
108 inline css::uno::Any SAL_CALL queryInterface(
109 const css::uno::Type & rType,
110 Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4 )
112 if (rType == Interface1::static_type())
113 return css::uno::Any( &p1, rType );
114 else if (rType == Interface2::static_type())
115 return css::uno::Any( &p2, rType );
116 else if (rType == Interface3::static_type())
117 return css::uno::Any( &p3, rType );
118 else if (rType == Interface4::static_type())
119 return css::uno::Any( &p4, rType );
120 else
121 return css::uno::Any();
123 /** Compares demanded type to given template argument types.
125 @tparam Interface1 interface type
126 @tparam Interface2 interface type
127 @tparam Interface3 interface type
128 @tparam Interface4 interface type
129 @tparam Interface5 interface type
130 @param rType demanded type
131 @param p1 interface pointer
132 @param p2 interface pointer
133 @param p3 interface pointer
134 @param p4 interface pointer
135 @param p5 interface pointer
136 @return acquired interface of demanded type or empty Any
138 template< class Interface1, class Interface2, class Interface3, class Interface4, class Interface5 >
139 inline css::uno::Any SAL_CALL queryInterface(
140 const css::uno::Type & rType,
141 Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5 )
143 if (rType == Interface1::static_type())
144 return css::uno::Any( &p1, rType );
145 else if (rType == Interface2::static_type())
146 return css::uno::Any( &p2, rType );
147 else if (rType == Interface3::static_type())
148 return css::uno::Any( &p3, rType );
149 else if (rType == Interface4::static_type())
150 return css::uno::Any( &p4, rType );
151 else if (rType == Interface5::static_type())
152 return css::uno::Any( &p5, rType );
153 else
154 return css::uno::Any();
156 /** Compares demanded type to given template argument types.
158 @tparam Interface1 interface type
159 @tparam Interface2 interface type
160 @tparam Interface3 interface type
161 @tparam Interface4 interface type
162 @tparam Interface5 interface type
163 @tparam Interface6 interface type
164 @param rType demanded type
165 @param p1 interface pointer
166 @param p2 interface pointer
167 @param p3 interface pointer
168 @param p4 interface pointer
169 @param p5 interface pointer
170 @param p6 interface pointer
171 @return acquired interface of demanded type or empty Any
173 template< class Interface1, class Interface2, class Interface3, class Interface4, class Interface5,
174 class Interface6 >
175 inline css::uno::Any SAL_CALL queryInterface(
176 const css::uno::Type & rType,
177 Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
178 Interface6 * p6 )
180 if (rType == Interface1::static_type())
181 return css::uno::Any( &p1, rType );
182 else if (rType == Interface2::static_type())
183 return css::uno::Any( &p2, rType );
184 else if (rType == Interface3::static_type())
185 return css::uno::Any( &p3, rType );
186 else if (rType == Interface4::static_type())
187 return css::uno::Any( &p4, rType );
188 else if (rType == Interface5::static_type())
189 return css::uno::Any( &p5, rType );
190 else if (rType == Interface6::static_type())
191 return css::uno::Any( &p6, rType );
192 else
193 return css::uno::Any();
195 /** Compares demanded type to given template argument types.
197 @tparam Interface1 interface type
198 @tparam Interface2 interface type
199 @tparam Interface3 interface type
200 @tparam Interface4 interface type
201 @tparam Interface5 interface type
202 @tparam Interface6 interface type
203 @tparam Interface7 interface type
204 @param rType demanded type
205 @param p1 interface pointer
206 @param p2 interface pointer
207 @param p3 interface pointer
208 @param p4 interface pointer
209 @param p5 interface pointer
210 @param p6 interface pointer
211 @param p7 interface pointer
212 @return acquired interface of demanded type or empty Any
214 template< class Interface1, class Interface2, class Interface3, class Interface4, class Interface5,
215 class Interface6, class Interface7 >
216 inline css::uno::Any SAL_CALL queryInterface(
217 const css::uno::Type & rType,
218 Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
219 Interface6 * p6, Interface7 * p7 )
221 if (rType == Interface1::static_type())
222 return css::uno::Any( &p1, rType );
223 else if (rType == Interface2::static_type())
224 return css::uno::Any( &p2, rType );
225 else if (rType == Interface3::static_type())
226 return css::uno::Any( &p3, rType );
227 else if (rType == Interface4::static_type())
228 return css::uno::Any( &p4, rType );
229 else if (rType == Interface5::static_type())
230 return css::uno::Any( &p5, rType );
231 else if (rType == Interface6::static_type())
232 return css::uno::Any( &p6, rType );
233 else if (rType == Interface7::static_type())
234 return css::uno::Any( &p7, rType );
235 else
236 return css::uno::Any();
238 /** Compares demanded type to given template argument types.
240 @tparam Interface1 interface type
241 @tparam Interface2 interface type
242 @tparam Interface3 interface type
243 @tparam Interface4 interface type
244 @tparam Interface5 interface type
245 @tparam Interface6 interface type
246 @tparam Interface7 interface type
247 @tparam Interface8 interface type
248 @param rType demanded type
249 @param p1 interface pointer
250 @param p2 interface pointer
251 @param p3 interface pointer
252 @param p4 interface pointer
253 @param p5 interface pointer
254 @param p6 interface pointer
255 @param p7 interface pointer
256 @param p8 interface pointer
257 @return acquired interface of demanded type or empty Any
259 template< class Interface1, class Interface2, class Interface3, class Interface4, class Interface5,
260 class Interface6, class Interface7, class Interface8 >
261 inline css::uno::Any SAL_CALL queryInterface(
262 const css::uno::Type & rType,
263 Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
264 Interface6 * p6, Interface7 * p7, Interface8 * p8 )
266 if (rType == Interface1::static_type())
267 return css::uno::Any( &p1, rType );
268 else if (rType == Interface2::static_type())
269 return css::uno::Any( &p2, rType );
270 else if (rType == Interface3::static_type())
271 return css::uno::Any( &p3, rType );
272 else if (rType == Interface4::static_type())
273 return css::uno::Any( &p4, rType );
274 else if (rType == Interface5::static_type())
275 return css::uno::Any( &p5, rType );
276 else if (rType == Interface6::static_type())
277 return css::uno::Any( &p6, rType );
278 else if (rType == Interface7::static_type())
279 return css::uno::Any( &p7, rType );
280 else if (rType == Interface8::static_type())
281 return css::uno::Any( &p8, rType );
282 else
283 return css::uno::Any();
285 /** Compares demanded type to given template argument types.
287 @tparam Interface1 interface type
288 @tparam Interface2 interface type
289 @tparam Interface3 interface type
290 @tparam Interface4 interface type
291 @tparam Interface5 interface type
292 @tparam Interface6 interface type
293 @tparam Interface7 interface type
294 @tparam Interface8 interface type
295 @tparam Interface9 interface type
296 @param rType demanded type
297 @param p1 interface pointer
298 @param p2 interface pointer
299 @param p3 interface pointer
300 @param p4 interface pointer
301 @param p5 interface pointer
302 @param p6 interface pointer
303 @param p7 interface pointer
304 @param p8 interface pointer
305 @param p9 interface pointer
306 @return acquired interface of demanded type or empty Any
308 template< class Interface1, class Interface2, class Interface3, class Interface4, class Interface5,
309 class Interface6, class Interface7, class Interface8, class Interface9 >
310 inline css::uno::Any SAL_CALL queryInterface(
311 const css::uno::Type & rType,
312 Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
313 Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9 )
315 if (rType == Interface1::static_type())
316 return css::uno::Any( &p1, rType );
317 else if (rType == Interface2::static_type())
318 return css::uno::Any( &p2, rType );
319 else if (rType == Interface3::static_type())
320 return css::uno::Any( &p3, rType );
321 else if (rType == Interface4::static_type())
322 return css::uno::Any( &p4, rType );
323 else if (rType == Interface5::static_type())
324 return css::uno::Any( &p5, rType );
325 else if (rType == Interface6::static_type())
326 return css::uno::Any( &p6, rType );
327 else if (rType == Interface7::static_type())
328 return css::uno::Any( &p7, rType );
329 else if (rType == Interface8::static_type())
330 return css::uno::Any( &p8, rType );
331 else if (rType == Interface9::static_type())
332 return css::uno::Any( &p9, rType );
333 else
334 return css::uno::Any();
336 /** Compares demanded type to given template argument types.
338 @tparam Interface1 interface type
339 @tparam Interface2 interface type
340 @tparam Interface3 interface type
341 @tparam Interface4 interface type
342 @tparam Interface5 interface type
343 @tparam Interface6 interface type
344 @tparam Interface7 interface type
345 @tparam Interface8 interface type
346 @tparam Interface9 interface type
347 @tparam Interface10 interface type
348 @param rType demanded type
349 @param p1 interface pointer
350 @param p2 interface pointer
351 @param p3 interface pointer
352 @param p4 interface pointer
353 @param p5 interface pointer
354 @param p6 interface pointer
355 @param p7 interface pointer
356 @param p8 interface pointer
357 @param p9 interface pointer
358 @param p10 interface pointer
359 @return acquired interface of demanded type or empty Any
361 template< class Interface1, class Interface2, class Interface3, class Interface4, class Interface5,
362 class Interface6, class Interface7, class Interface8, class Interface9, class Interface10 >
363 inline css::uno::Any SAL_CALL queryInterface(
364 const css::uno::Type & rType,
365 Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
366 Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10 )
368 if (rType == Interface1::static_type())
369 return css::uno::Any( &p1, rType );
370 else if (rType == Interface2::static_type())
371 return css::uno::Any( &p2, rType );
372 else if (rType == Interface3::static_type())
373 return css::uno::Any( &p3, rType );
374 else if (rType == Interface4::static_type())
375 return css::uno::Any( &p4, rType );
376 else if (rType == Interface5::static_type())
377 return css::uno::Any( &p5, rType );
378 else if (rType == Interface6::static_type())
379 return css::uno::Any( &p6, rType );
380 else if (rType == Interface7::static_type())
381 return css::uno::Any( &p7, rType );
382 else if (rType == Interface8::static_type())
383 return css::uno::Any( &p8, rType );
384 else if (rType == Interface9::static_type())
385 return css::uno::Any( &p9, rType );
386 else if (rType == Interface10::static_type())
387 return css::uno::Any( &p10, rType );
388 else
389 return css::uno::Any();
391 /** Compares demanded type to given template argument types.
393 @tparam Interface1 interface type
394 @tparam Interface2 interface type
395 @tparam Interface3 interface type
396 @tparam Interface4 interface type
397 @tparam Interface5 interface type
398 @tparam Interface6 interface type
399 @tparam Interface7 interface type
400 @tparam Interface8 interface type
401 @tparam Interface9 interface type
402 @tparam Interface10 interface type
403 @tparam Interface11 interface type
404 @param rType demanded type
405 @param p1 interface pointer
406 @param p2 interface pointer
407 @param p3 interface pointer
408 @param p4 interface pointer
409 @param p5 interface pointer
410 @param p6 interface pointer
411 @param p7 interface pointer
412 @param p8 interface pointer
413 @param p9 interface pointer
414 @param p10 interface pointer
415 @param p11 interface pointer
416 @return acquired interface of demanded type or empty Any
418 template< class Interface1, class Interface2, class Interface3, class Interface4, class Interface5,
419 class Interface6, class Interface7, class Interface8, class Interface9, class Interface10,
420 class Interface11 >
421 inline css::uno::Any SAL_CALL queryInterface(
422 const css::uno::Type & rType,
423 Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
424 Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10,
425 Interface11 * p11 )
427 if (rType == Interface1::static_type())
428 return css::uno::Any( &p1, rType );
429 else if (rType == Interface2::static_type())
430 return css::uno::Any( &p2, rType );
431 else if (rType == Interface3::static_type())
432 return css::uno::Any( &p3, rType );
433 else if (rType == Interface4::static_type())
434 return css::uno::Any( &p4, rType );
435 else if (rType == Interface5::static_type())
436 return css::uno::Any( &p5, rType );
437 else if (rType == Interface6::static_type())
438 return css::uno::Any( &p6, rType );
439 else if (rType == Interface7::static_type())
440 return css::uno::Any( &p7, rType );
441 else if (rType == Interface8::static_type())
442 return css::uno::Any( &p8, rType );
443 else if (rType == Interface9::static_type())
444 return css::uno::Any( &p9, rType );
445 else if (rType == Interface10::static_type())
446 return css::uno::Any( &p10, rType );
447 else if (rType == Interface11::static_type())
448 return css::uno::Any( &p11, rType );
449 else
450 return css::uno::Any();
452 /** Compares demanded type to given template argument types.
454 @tparam Interface1 interface type
455 @tparam Interface2 interface type
456 @tparam Interface3 interface type
457 @tparam Interface4 interface type
458 @tparam Interface5 interface type
459 @tparam Interface6 interface type
460 @tparam Interface7 interface type
461 @tparam Interface8 interface type
462 @tparam Interface9 interface type
463 @tparam Interface10 interface type
464 @tparam Interface11 interface type
465 @tparam Interface12 interface type
466 @param rType demanded type
467 @param p1 interface pointer
468 @param p2 interface pointer
469 @param p3 interface pointer
470 @param p4 interface pointer
471 @param p5 interface pointer
472 @param p6 interface pointer
473 @param p7 interface pointer
474 @param p8 interface pointer
475 @param p9 interface pointer
476 @param p10 interface pointer
477 @param p11 interface pointer
478 @param p12 interface pointer
479 @return acquired interface of demanded type or empty Any
481 template< class Interface1, class Interface2, class Interface3, class Interface4, class Interface5,
482 class Interface6, class Interface7, class Interface8, class Interface9, class Interface10,
483 class Interface11, class Interface12 >
484 inline css::uno::Any SAL_CALL queryInterface(
485 const css::uno::Type & rType,
486 Interface1 * p1, Interface2 * p2, Interface3 * p3, Interface4 * p4, Interface5 * p5,
487 Interface6 * p6, Interface7 * p7, Interface8 * p8, Interface9 * p9, Interface10 * p10,
488 Interface11 * p11, Interface12 * p12 )
490 if (rType == Interface1::static_type())
491 return css::uno::Any( &p1, rType );
492 else if (rType == Interface2::static_type())
493 return css::uno::Any( &p2, rType );
494 else if (rType == Interface3::static_type())
495 return css::uno::Any( &p3, rType );
496 else if (rType == Interface4::static_type())
497 return css::uno::Any( &p4, rType );
498 else if (rType == Interface5::static_type())
499 return css::uno::Any( &p5, rType );
500 else if (rType == Interface6::static_type())
501 return css::uno::Any( &p6, rType );
502 else if (rType == Interface7::static_type())
503 return css::uno::Any( &p7, rType );
504 else if (rType == Interface8::static_type())
505 return css::uno::Any( &p8, rType );
506 else if (rType == Interface9::static_type())
507 return css::uno::Any( &p9, rType );
508 else if (rType == Interface10::static_type())
509 return css::uno::Any( &p10, rType );
510 else if (rType == Interface11::static_type())
511 return css::uno::Any( &p11, rType );
512 else if (rType == Interface12::static_type())
513 return css::uno::Any( &p12, rType );
514 else
515 return css::uno::Any();
520 #endif
522 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */