PLCnext API Documentation 24.0.0.71
RscChannelKind.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 Rsc { namespace Services
11{
12
13enum class RscChannelKind
14{
15 None = 0,
16 Tcp = 1,
17 Ipc = 2
18};
19
21// global stream operators of enum RscChannelKind for logging and parsing
22ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, RscChannelKind value);
23ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, RscChannelKind& value);
24
25}}}} // end of namespace Arp::System::Rsc::Services
@ System
System components used by the System, Device, Plc or Io domains.
@ Tcp
Socket uses TCP protocol.
Root namespace for the PLCnext API