PLCnext API Documentation 25.0.2.69
RscStructInfo.hpp
1
2//
3// Copyright Phoenix Contact GmbH & Co. KG
4//
6#pragma once
8#include "Arp/Base/Rsc/Commons/RscType.hpp"
9namespace Arp::Base::Rsc::Commons
10{
11
16class ARP_EXPORT RscStructInfo
17{
18public: // construction
19 explicit RscStructInfo(size_t fieldCount = 0);
20
21public: // fields
22 size_t FieldCount = 0;
23};
24
25} // end of namespace Arp::Base::Rsc::Commons
Contains information to marshal structs.
Definition: RscStructInfo.hpp:17