PLCnext API Documentation 25.0.2.69
SystemManagerState.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 NmPayload { namespace Acf
11{
12
13enum class ARP_CXX_SYMBOL_EXPORT SystemManagerState
14{
15 None = 0,
16 Ready = 1,
17 Stop = 2,
18 Running = 3
19};
20
22// global stream operators of enum SystemManagerState for logging and parsing
23ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, SystemManagerState value);
24ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, SystemManagerState& value);
25
26}}}} // namespace Arp::System::NmPayload::Acf
27
28template<> struct fmt::formatter<Arp::System::NmPayload::Acf::SystemManagerState>: public fmt::ostream_formatter {};
Root namespace for the PLCnext API