PLCnext API Documentation 23.6.0.37
PlcStartKind.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10namespace Arp { namespace Plc { namespace Commons { namespace Domain
11{
12
13enum class PlcStartKind : uint8
14{
15 None = 0,
16 Cold = 1,
17 Warm = 2,
18 Hot = 3,
19 RestoreWarm = 4,
20};
21
23// global stream operators of enum PlcStartKind for logging and parsing
24ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, PlcStartKind value);
25ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, PlcStartKind& value);
26
27}}}} // end of namespace Arp::Plc::Commons::Domain
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:28
Root namespace for the PLCnext API