PLCnext API Documentation 25.0.2.69
ConfigErrorCode.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
19{
23 None = 0,
24
29
33 UnknownItem = 2,
34
38 IncompatibleType = 3,
39
43 InvalidParameter = 4,
44
48 FileIoError = 5,
49};
50
52// global stream operators of enum ConfigErrorCode for logging and parsing
53ARP_EXPORT std::ostream& operator<<(std::ostream& os, ConfigErrorCode value);
54ARP_EXPORT std::istream& operator>>(std::istream& is, ConfigErrorCode& value);
55
56} // end of namespace Arp::Plc::Domain::Services
57
59// template specialization of ConfigErrorCode formatter
60template<> struct fmt::formatter<Arp::Plc::Domain::Services::ConfigErrorCode> : public fmt::ostream_formatter {};
std::int32_t int32
The Arp integer type of 4 byte size.
Definition: PrimitiveTypes.hpp:35
Namespace for services of the PLC domain
ConfigErrorCode
The result code of a IPlcConfigService operation.
Definition: ConfigErrorCode.hpp:19
@ FileIoError
The config item could not be saved. Further details can be found in the error message.
Root namespace for the PLCnext API