PLCnext API Documentation 23.3.0.32
GdsBufferKind.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 Gds
11{
12
13enum class GdsBufferKind
14{
15 None = 0,
16 Default = 1,
17 Single = 2,
18 SingleUnsynced = 3,
19 Quad = 4,
20 Multi = 5,
21 Double = 6,
22 Ring = 7,
23 Handshake = 8,
24};
25
27// global stream operators of enum GdsBufferKind for logging and parsing
28ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, GdsBufferKind value);
29ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, GdsBufferKind& value);
30
31}}}} // end of namespace Arp::Plc::Commons::Gds
GdsBufferKind
Definition: GdsBufferKind.hpp:14
@ SingleUnsynced
SingleBuffer (NullMutex)
Root namespace for the PLCnext API