VirtualBox

source: vbox/trunk/include/iprt/cpp/meta.h@ 57820

Last change on this file since 57820 was 56291, checked in by vboxsync, 9 years ago

include: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1/** @file
2 * IPRT - C++ Meta programming.
3 */
4
5/*
6 * Copyright (C) 2011-2015 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_cpp_meta_h
27#define ___iprt_cpp_meta_h
28
29/** @defgroup grp_rt_cpp_meta C++ Meta programming utilities
30 * @ingroup grp_rt_cpp
31 * @{
32 */
33
34/**
35 * Check for a condition on compile time and dependent of the result TrueResult
36 * or FalseResult will be defined.
37 *
38 * @param Condition Condition to check.
39 * @param TrueResult Result when condition is true.
40 * @param FalseResult Result when condition is false
41 */
42template <bool Condition, typename TrueResult, typename FalseResult>
43struct RTCIf;
44
45/**
46 * Check for a condition on compile time and dependent of the result TrueResult
47 * or FalseResult will be defined.
48 *
49 * True specialization of RTCIf.
50 *
51 * @param TrueResult Result when condition is true.
52 * @param FalseResult Result when condition is false
53 */
54template <typename TrueResult, typename FalseResult>
55struct RTCIf<true, TrueResult, FalseResult>
56{
57 typedef TrueResult result;
58};
59
60/**
61 * Check for a condition on compile time and dependent of the result TrueResult
62 * or FalseResult will be defined.
63 *
64 * False specialization of RTCIf.
65 *
66 * @param TrueResult Result when condition is true.
67 * @param FalseResult Result when condition is false
68 */
69template <typename TrueResult, typename FalseResult>
70struct RTCIf<false, TrueResult, FalseResult>
71{
72 typedef FalseResult result;
73};
74
75/**
76 * Check if @a T is a pointer or not at compile time and dependent of the
77 * result TrueResult or FalseResult will be defined.
78 *
79 * False version of RTCIfPtr.
80 *
81 * @param Condition Condition to check.
82 * @param TrueResult Result when condition is true.
83 * @param FalseResult Result when condition is false
84 */
85template <class T, typename TrueResult, typename FalseResult>
86struct RTCIfPtr
87{
88 typedef FalseResult result;
89};
90
91/**
92 * Check if @a T is a pointer or not at compile time and dependent of the
93 * result TrueResult or FalseResult will be defined.
94 *
95 * True specialization of RTCIfPtr.
96 *
97 * @param Condition Condition to check.
98 * @param TrueResult Result when condition is true.
99 * @param FalseResult Result when condition is false
100 */
101template <class T, typename TrueResult, typename FalseResult>
102struct RTCIfPtr<T*, TrueResult, FalseResult>
103{
104 typedef TrueResult result;
105};
106
107/** @} */
108
109#endif /* !___iprt_cpp_meta_h */
110
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette