PLCnext API Documentation 23.6.0.37
SessionState.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED
11
12namespace Arp { namespace Services { namespace DataLogger { namespace Services
13{
14
18enum class SessionState : uint8
19{
23 None = 0,
24
28 Created = 1,
29
33 Initialized = 2,
34
38 Running = 3,
39
43 Stopped = 4,
44
48 Error = 5,
49};
50
52// global stream operators of enum SessionState for logging and parsing
53ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, SessionState value);
54ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, SessionState& value);
55
56}}}} // end of namespace Arp::Services::DataLogger::Services
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:28
SessionState
State of a data logger session
Definition: SessionState.hpp:19
@ Created
The session was already created but not yet initialized
@ Initialized
The session has loaded a configuration and is ready to run
Root namespace for the PLCnext API