PLCnext API Documentation 23.0.2.9
RscStringEncoding.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 Rsc { namespace Services
11{
12
18{
19 None = 0,
20 Ansi = 1,
21 Utf8 = 2,
22 Utf16 = 3,
23};
24
26// global stream operators of enum RscStringEncoding for logging and parsing
27ARP_CXX_SYMBOL_EXPORT std::ostream& operator<<(std::ostream& os, RscStringEncoding value);
28ARP_CXX_SYMBOL_EXPORT std::istream& operator>>(std::istream& is, RscStringEncoding& value);
29
30}}}} // end of namespace Arp::System::Rsc::Services
@ System
System components used by the System, Device, Plc or Io domains.
RscStringEncoding
Determines the encoding of a Rsc String. Values are identical to CommonRemoting::StringEncoding.
Definition: RscStringEncoding.hpp:18
Root namespace for the PLCnext API