PLCnext API Documentation 25.0.2.69
LibraryInfoKind.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 LibraryInfoKind : uint32
15{
16 None = 0,
17 TargetIdentifier = 1,
18 AbiVersion = 2
19};
20
22// global stream operators of enum LibraryInfoKind for logging and parsing
23ARP_EXPORT std::ostream& operator<<(std::ostream& os, LibraryInfoKind value);
24ARP_EXPORT std::istream& operator>>(std::istream& is, LibraryInfoKind& value);
25
26}}}} // end of namespace Arp::Base::Acf::Commons
27
29// template specialization of LibraryInfoKind formatter
30template<> struct fmt::formatter<Arp::Base::Acf::Commons::LibraryInfoKind> : 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