7#include "Arp/System/Rsc/Services/Rsc.h"
8#include "Arp/System/Rsc/Services/IRscServiceFactory.hpp"
10namespace Arp {
namespace System {
namespace Rsc {
namespace Services
17class RscServiceFactoryBase :
public IRscServiceFactory
20 using Base = RscServiceFactoryBase;
31 RscServiceFactoryBase(
bool isSecure,
const String& serviceProviderName =
"");
33 virtual ~RscServiceFactoryBase(
void) =
default;
36 bool IsSecure(
void)
const override;
37 const String& GetServiceProviderName(
void)
const override;
40 String serviceProviderName;
46inline RscServiceFactoryBase::RscServiceFactoryBase(
bool isSecure,
const String& serviceProviderName)
48 , serviceProviderName(serviceProviderName)
52inline const String& RscServiceFactoryBase::GetServiceProviderName()
const
54 return this->serviceProviderName;
57inline bool RscServiceFactoryBase::IsSecure()
const
59 return this->isSecure;
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