8#include "Arp/System/Rsc/Services/Rsc.h"
9#include "Arp/System/Rsc/Services/IRscService.hpp"
10#include "Arp/System/Rsc/Services/IRscServiceStub.hpp"
12namespace Arp {
namespace System {
namespace Rsc {
namespace Services
16class IRscAuthorizator;
22class IRscServiceFactory
25 typedef std::shared_ptr<IRscServiceFactory> Ptr;
29 IRscServiceFactory(
void) =
default;
31 virtual ~IRscServiceFactory(
void) =
default;
34 virtual bool IsSecure(
void)
const = 0;
35 virtual const String& GetServiceProviderName(
void)
const = 0;
38 virtual IRscService* CreateServiceImpl(
const char* providerName, IRscAuthorizator* pAuthorizator) = 0;
39 virtual IRscServiceStub* CreateServiceStub(
const char* providerName, IRscAuthorizator* pAuthorizator) = 0;
42 IRscServiceFactory(
const IRscServiceFactory& arg);
43 IRscServiceFactory& operator=(
const IRscServiceFactory& arg);
Arp::BasicString< char8 > String
The Arp String class.
Definition: TypeSystem.h:27
@ System
System components used by the System, Device, Plc or Io domains.
Root namespace for the PLCnext API