PLCnext API Documentation 24.0.0.71
SystemManagerState.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
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
Root namespace for the PLCnext API