PLCnext API Documentation 25.0.2.69
RpnItemType.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8#include "Arp/Base/Core/Enum.hxx"
9
10// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED
11
13{
14
18enum class RpnItemType : uint8
19{
23 None = 0,
24
28 Variable = 1,
29
33 Constant = 2,
34
38 Operation = 3,
39};
40
42// global stream operators of enum RpnItemType for logging and parsing
43ARP_EXPORT std::ostream& operator<<(std::ostream& os, RpnItemType value);
44ARP_EXPORT std::istream& operator>>(std::istream& is, RpnItemType& value);
45
46} // end of namespace Arp::Services::DataLogger::Services
47
49// template specialization of RpnItemType formatter
50template<> struct fmt::formatter<Arp::Services::DataLogger::Services::RpnItemType> : public fmt::ostream_formatter {};
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:25
Namespace for services of the DataLogger
RpnItemType
Item type of the Arp.Services.DataLogger.Services.TriggerRpnItem structure. (RPN = Reverse Polnish No...
Definition: RpnItemType.hpp:19
@ Variable
The Value of Item is the instance path of a variable.
@ Constant
The Value of the Item is a constant.
Operation
Allows to describe operations which are requested or allowed on objects.
Definition: Operation.hpp:39
Root namespace for the PLCnext API