PLCnext API Documentation 23.6.0.37
ChildKind.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED
11
12namespace Arp { namespace Plc { namespace Commons { namespace Meta
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_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, ChildKind value);
37ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, ChildKind& value);
38
39}}}} // end of namespace Arp::Plc::Commons::Meta
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:28
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