PLCnext API Documentation 25.0.2.69
StorageFileFormatMigrationResult.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8#include "Arp/System/Core/Enum.hxx"
9
10namespace Arp { namespace System { namespace NmPayload { namespace NotificationLogger
11{
12
13enum class ARP_CXX_SYMBOL_EXPORT StorageFileFormatMigrationResult : uint32
14{
15 None = 0,
16 Successful = 1,
17 Failed = 2,
18 NotPossible = 3,
19 Downgrade = 4,
20};
21
23// global stream operators of enum StorageFileFormatMigrationResult for logging and parsing
24ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, StorageFileFormatMigrationResult value);
25ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, StorageFileFormatMigrationResult& value);
26
27}}}} // namespace Arp::System::NmPayload::NotificationLogger
28
29template<> struct fmt::formatter<Arp::System::NmPayload::NotificationLogger::StorageFileFormatMigrationResult>: public fmt::ostream_formatter {};
std::uint32_t uint32
The Arp unsigned integer type of 4 byte size.
Definition: PrimitiveTypes.hpp:33
Root namespace for the PLCnext API