PLCnext API Documentation 25.0.2.69
DcgResult.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 DcgResult : uint32
19{
23 None = 0,
24
28 Success = 1,
29
33 Refused = 2,
34};
35
37// global stream operators of enum DcgResult for logging and parsing
38ARP_EXPORT std::ostream& operator<<(std::ostream& os, DcgResult value);
39ARP_EXPORT std::istream& operator>>(std::istream& is, DcgResult& value);
40
41} // end of namespace Arp::Plc::Domain::Commons
42
44// template specialization of DcgResult formatter
45template<> struct fmt::formatter<Arp::Plc::Domain::Commons::DcgResult> : public fmt::ostream_formatter {};
std::uint32_t uint32
The Arp unsigned integer type of 4 byte size.
Definition: PrimitiveTypes.hpp:33
Namespace for interface types of the PLC domain
DcgResult
The result of a PLC download-changes operation.
Definition: DcgResult.hpp:19
@ Refused
The download-changes operation was refused by any component.
Root namespace for the PLCnext API