PLCnext API Documentation 25.0.2.69
RecordType.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
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
15using namespace Arp;
16
20enum class RecordType : uint8
21{
25 None = 0,
26
30 Continuous = 1,
31
35 PreCycle = 2,
36
40 Trigger = 3,
41
45 PostCycle = 4,
46};
47
49// global stream operators of enum LogLevel for logging and parsing
50ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, RecordType value);
51ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, RecordType& value);
52
53}}}} // end of namespace Arp::Services::DataLogger::Services
54
55template<> struct fmt::formatter<Arp::Services::DataLogger::Services::RecordType>: public fmt::ostream_formatter {};
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:25
RecordType
Attribute to mark the recorded values of a triggered session
Definition: RecordType.hpp:21
@ PostCycle
Records are recorded after the condition was triggered
@ Continuous
Record belongs to continously logging session.
@ Trigger
Records are recorded when the condition was triggered
@ PreCycle
Values are recorded before the condition was triggered
Root namespace for the PLCnext API