PLCnext API Documentation 23.0.2.9
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 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
@ System
System components used by the System, Device, Plc or Io domains.
Root namespace for the PLCnext API