PLCnext API Documentation 24.6.0.58
ServiceTypes.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 Ve
11{
12
13enum class ServiceType
14{
15 Process = 0,
16 SharedLibrary = 1,
17 Semaphore = 2,
18 Mutex = 3,
19 Thread = 4,
20 SharedMemory = 5,
21 MessageQueue = 6,
22 Socket = 7,
23 //File = 8,
24 Timer = 9,
25 RWLockService = 10,
26 //Spinlock = 11,
27 //Barrier = 12,
28 //Signal = 13,
29 File = 14,
30 ConditionVariable = 15,
31 TraceController = 16,
32 SignalHandler = 17,
33 NetworkInterfaceInfo = 18
34};
35
37// global stream operators of enum ServiceType for logging and parsing
38ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, ServiceType value);
39ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, ServiceType& value);
40
41}}} // end of namespace Arp::System::Ve
std::ostream & operator<<(std::ostream &os, const BasicString< CharType, Alloc > &right)
Streams the right string to the outstream os .
Definition: BasicString.hxx:1740
std::istream & operator>>(std::istream &is, BasicString< CharType, Alloc > &right)
Streams the instream is into the right string.
Definition: BasicString.hxx:1751
@ System
System components used by the System, Device, Plc or Io domains.
Root namespace for the PLCnext API