PLCnext API Documentation 26.0.1.58
Result.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
16enum class Result : uint32
17{
19 None = 0,
20
22 Success = 1,
23
25 Unspecified = 2,
26
28 NotExists = 3,
29
31 NotAuthorized = 4,
32
34 PortNameSyntaxError = 5,
35
37 PortNameSemanticError = 6,
38
40 IndexOutOfRange = 7,
41};
42
44// global stream operators of enum Result for logging and parsing
45ARP_EXPORT std::ostream& operator<<(std::ostream& os, Result value);
46ARP_EXPORT std::istream& operator>>(std::istream& is, Result& value);
47
48} // end of namespace Arp::Plc::Meta::Services
49
51// template specialization of Result formatter
52template<> struct fmt::formatter<Arp::Plc::Meta::Services::Result> : public fmt::ostream_formatter {};
std::uint32_t uint32
The Arp unsigned integer type of 4 byte size.
Definition: PrimitiveTypes.hpp:33
Namespace for services of the Meta component
Result
Enumeration of possible results
Definition: Result.hpp:17
Root namespace for the PLCnext API