PLCnext API Documentation 23.3.0.32
IAddressConversionService.hpp
1
2//
3// Copyright PHOENIX CONTACT Electronics GmbH
4//
6#pragma once
8#include "Arp/Io/ProfinetStack/Controller/Services/AddressConversionServiceProxyFactory.hpp"
9#include "Arp/Io/ProfinetStack/Controller/Services/ProfinetAddress.hpp"
10#include "Arp/System/Rsc/Services/IRscService.hpp"
11
12// DO NOT MODIFY THIS FILE, THIS FILE IS AUTOGENERATED BY IAddressConversionService.cs
13
14namespace Arp { namespace Io { namespace ProfinetStack { namespace Controller { namespace Services
15{
16
17using namespace Arp;
18using namespace Arp::System::Rsc::Services;
19
25{
26public: // typedefs
27 using Ptr = std::shared_ptr<IAddressConversionService>;
28
29public: // construction/destruction
32
33public: // static policy operation
34 static IRscServiceProxyFactory& GetProxyFactory(void);
35
36public: // abstract operations
47 virtual uint32 AddressToId(const ProfinetAddress& address, uint32& id) = 0;
48
59 virtual uint32 IdToAddress(uint32 id, ProfinetAddress& address) = 0;
60};
61
63// inline methods of class IAddressConversionService
64inline IRscServiceProxyFactory& IAddressConversionService::GetProxyFactory()
65{
66 return AddressConversionServiceProxyFactory::GetInstance();
67}
68
69}}}}} // end of namespace Arp::Io::ProfinetStack::Controller::Services
Use this service for conversion of addresses and node IDs
Definition: IAddressConversionService.hpp:25
virtual uint32 AddressToId(const ProfinetAddress &address, uint32 &id)=0
Convert an address to a node ID
IAddressConversionService(void)=default
Constructs an IAddressConversionService instance.
virtual uint32 IdToAddress(uint32 id, ProfinetAddress &address)=0
Convert a node id to an address
This structure contains all parameters of a PROFINET address
Definition: ProfinetAddress.hpp:25
Base interface for all Rsc service interface.
Definition: IRscService.hpp:19
std::uint32_t uint32
The Arp unsigned integer type of 4 byte size.
Definition: PrimitiveTypes.hpp:35
Namespace for classes and interfaces for the Remote Service Call implementation
Root namespace for the PLCnext API