DART 6.13.2
Loading...
Searching...
No Matches
Castable.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2011-2022, The DART development contributors
3 * All rights reserved.
4 *
5 * The list of contributors can be found at:
6 * https://github.com/dartsim/dart/blob/master/LICENSE
7 *
8 * This file is provided under the following "BSD-style" License:
9 * Redistribution and use in source and binary forms, with or
10 * without modification, are permitted provided that the following
11 * conditions are met:
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#ifndef DART_COMMON_CASTABLE_HPP_
34#define DART_COMMON_CASTABLE_HPP_
35
36#include <string>
37
38#define DART_STRING_TYPE(type_name) \
39 \
40 [[nodiscard]] static const std::string& getStaticType() \
41 { \
42 static const std::string type = #type_name; \
43 return type; \
44 } \
45 \
46 [[nodiscard]] const std::string& getType() const override \
47 { \
48 return getStaticType(); \
49 } \
50 void _ANONYMOUS_FUNCTION_1()
51
52namespace dart::common {
53
56template <typename Base>
58{
59public:
69 template <typename Derived>
70 [[nodiscard]] bool is() const;
71
74 template <typename Derived>
75 [[nodiscard]] const Derived* as() const;
76
79 template <typename Derived>
80 [[nodiscard]] Derived* as();
81
83 template <typename Derived>
84 [[nodiscard]] const Derived& asRef() const;
85
87 template <typename Derived>
88 [[nodiscard]] Derived& asRef();
89
90private:
92 [[nodiscard]] const Base& base() const;
93
95 [[nodiscard]] Base& base();
96};
97
98} // namespace dart::common
99
101
102#endif // DART_COMMON_CASTABLE_HPP_
A CRTP base class that provides an interface for easily casting to the derived types.
Definition Castable.hpp:58
const Base & base() const
Casts to Base const-reference.
Definition Castable-impl.hpp:98
const Derived & asRef() const
Casts to reference of Derived if Base is its base class. UB otherwise.
Definition Castable-impl.hpp:81
bool is() const
Returns true if the types of this Base and the template parameter (a base class) are identical.
Definition Castable-impl.hpp:48
const Derived * as() const
Casts to pointer of Derived if Base is its base class.
Definition Castable-impl.hpp:65
Definition Aspect.cpp:42