PLCnext API Documentation 25.0.2.69
ComponentCategory.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
12namespace Arp::Base::Acf::Commons
13{
14
16enum class ComponentCategory : uint8
17{
19 None = 0,
20
23 System = 1,
24
27 Service = 2,
28
31 Custom = 3,
32};
33
35// global stream operators of enum ComponentCategory for logging and parsing
36ARP_EXPORT std::ostream& operator<<(std::ostream& os, ComponentCategory value);
37ARP_EXPORT std::istream& operator>>(std::istream& is, ComponentCategory& value);
38
39} // end of namespace Arp::System::Acf::Commons
40
42// template specialization of ComponentCategory formatter
43template<> struct fmt::formatter<Arp::Base::Acf::Commons::ComponentCategory> : public fmt::ostream_formatter {};
44
45namespace Arp::System::Acf
46{
47using Arp::Base::Acf::Commons::ComponentCategory;
48}
49
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