PLCnext API Documentation 25.0.2.69
NotificationRegistrationStatus.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 Nm
11{
12
14enum class ARP_CXX_SYMBOL_EXPORT NotificationRegistrationStatus : uint8
15{
16 Subscribed = 0,
17 Registered = 1,
18 Unregistered = 2,
19};
20
22// global stream operators of enum NotificationRegistrationStatus for logging and parsing
23ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, NotificationRegistrationStatus value);
24ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, NotificationRegistrationStatus& value);
25
26}}} // namespace Arp::System::Nm
27
28template<> struct fmt::formatter<Arp::System::Nm::NotificationRegistrationStatus>: public fmt::ostream_formatter {};
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:25
enum ARP_CXX_SYMBOL_EXPORT NotificationRegistrationStatus
Enumeration to represent the status of the Notification
Definition: NotificationRegistrationStatus.hpp:14
Root namespace for the PLCnext API