PLCnext API Documentation 25.0.2.69
ChildKind.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8#include "Arp/Base/Core/Enum.hxx"
9
10// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED
11
13{
14
16enum class ChildKind : uint8
17{
19 None = 0,
20
22 Instance = 1,
23
25 Static = 2,
26
28 Literal = 3,
29
31 Default = 1,
32};
33
35// global stream operators of enum ChildKind for logging and parsing
36ARP_EXPORT std::ostream& operator<<(std::ostream& os, ChildKind value);
37ARP_EXPORT std::istream& operator>>(std::istream& is, ChildKind& value);
38
39} // end of namespace Arp::Plc::Commons::Meta
40
42// template specialization of ChildKind formatter
43template<> struct fmt::formatter<Arp::Plc::Commons::Meta::ChildKind> : public fmt::ostream_formatter {};
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:25
Namespace for the Meta component
ChildKind
Enumeration of the type of a child type
Definition: ChildKind.hpp:17
@ Static
Static class member.
@ Literal
Const member or literal, respectively.
@ Instance
Instance member or field, respectively.
Root namespace for the PLCnext API