PLCnext API Documentation 24.0.0.71
StorageFileFormatMigrationResult.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
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
std::uint32_t uint32
The Arp unsigned integer type of 4 byte size.
Definition: PrimitiveTypes.hpp:36
@ System
System components used by the System, Device, Plc or Io domains.
Root namespace for the PLCnext API