PLCnext API Documentation 25.0.2.69
SecurityListType.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10namespace Arp { namespace System { namespace Commons { namespace Security
11{
12
13enum class SecurityListType : uint8
14{
15 TrustList = 0,
16 IssuerList = 1,
17 TrustCrlList = 2,
18 IssuerCrlList = 3,
19};
20
22// global stream operators of enum SecurityListType for logging and parsing
23ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, SecurityListType value);
24ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, SecurityListType& value);
25
26}}}} // end of namespace Arp::System::Commons::Security
27
28template<> struct fmt::formatter<Arp::System::Commons::Security::SecurityListType>: public fmt::ostream_formatter {};
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:25
Root namespace for the PLCnext API