PLCnext API Documentation 25.0.2.69
ComponentInfoKind.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8#include "Arp/Base/Core/Enum.hxx"
9
10namespace Arp { namespace Base { namespace Acf { namespace Commons
11{
12
14enum class ComponentInfoKind : uint32
15{
16 None = 0,
17 RequiredCapabilities = 1,
18};
19
21// global stream operators of enum ComponentInfoKind for logging and parsing
22ARP_EXPORT std::ostream& operator<<(std::ostream& os, ComponentInfoKind value);
23ARP_EXPORT std::istream& operator>>(std::istream& is, ComponentInfoKind& value);
24
25}}}} // end of namespace Arp::Base::Acf::Commons
26
28// template specialization of ComponentInfoKind formatter
29template<> struct fmt::formatter<Arp::Base::Acf::Commons::ComponentInfoKind> : public fmt::ostream_formatter {};
std::uint32_t uint32
The Arp unsigned integer type of 4 byte size.
Definition: PrimitiveTypes.hpp:33
Root namespace for the PLCnext API