AronTyped.h
Go to the documentation of this file.
1 #pragma once
2 
4 
6 {
7 
8  /**
9  * @brief Something with a specific ARON type.
10  */
11  class AronTyped
12  {
13  public:
14  explicit AronTyped(aron::type::ObjectPtr aronType = nullptr);
15 
16 
17  bool hasAronType() const;
20 
21 
22  protected:
23  /// The expected Aron type. May be nullptr, in which case no type information is available.
25  };
26 
27 
28 } // namespace armarx::armem::base::detail
armarx::armem::base::detail::AronTyped::AronTyped
AronTyped(aron::type::ObjectPtr aronType=nullptr)
Definition: AronTyped.cpp:8
armarx::armem::base::detail::AronTyped::aronType
aron::type::ObjectPtr & aronType()
Definition: AronTyped.cpp:19
armarx::armem::base::detail
Definition: AronTyped.cpp:5
forward_declarations.h
armarx::armem::base::detail::AronTyped
Something with a specific ARON type.
Definition: AronTyped.h:11
armarx::armem::base::detail::AronTyped::hasAronType
bool hasAronType() const
Definition: AronTyped.cpp:13
armarx::aron::type::ObjectPtr
std::shared_ptr< Object > ObjectPtr
Definition: Object.h:36
armarx::armem::base::detail::AronTyped::_aronType
aron::type::ObjectPtr _aronType
The expected Aron type. May be nullptr, in which case no type information is available.
Definition: AronTyped.h:24