PLCnext API Documentation 25.0.2.69
ComponentCategory.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
7#ifndef ARP_USE_ARP_SYSTEM_ACF_COMMONS
8#include "Arp/Base/Acf/Commons/ComponentCategory.hpp"
9namespace Arp::System::Acf
10{
11using Arp::Base::Acf::Commons::ComponentCategory;
12}
13#else
14#include "Arp/System/Core/Arp.h"
15#include "Arp/System/Core/Enum.hxx"
16
17// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED
18
19namespace Arp { namespace System { namespace Acf
20{
21
23enum class ComponentCategory : uint8
24{
26 None = 0,
27
30 System = 1,
31
34 Service = 2,
35
38 Custom = 3,
39};
40
42// global stream operators of enum ComponentCategory for logging and parsing
43ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, ComponentCategory value);
44ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, ComponentCategory& value);
45
46}}} // end of namespace Arp::System::Acf
47
49// template specialization of ComponentCategory formatter
50template<> struct fmt::formatter<Arp::System::Acf::ComponentCategory> : public fmt::ostream_formatter {};
51
52#endif
std::uint8_t uint8
The Arp unsigned integer type of 1 byte size.
Definition: PrimitiveTypes.hpp:25
This is the namespace of the Application Component Framework.
Definition: ComponentBase.hpp:72
Root namespace for the PLCnext API