Kodi Documentation 22.0
Kodi is an open source media player and entertainment hub.
Loading...
Searching...
No Matches
PERIPHERALS::CPeripheral Class Reference

#include <Peripheral.h>

Inheritance diagram for PERIPHERALS::CPeripheral:
KODI::JOYSTICK::IInputProvider KODI::KEYBOARD::IKeyboardInputProvider KODI::MOUSE::IMouseInputProvider PERIPHERALS::CPeripheralBluetooth PERIPHERALS::CPeripheralCecAdapter PERIPHERALS::CPeripheralDisk PERIPHERALS::CPeripheralHID PERIPHERALS::CPeripheralJoystick PERIPHERALS::CPeripheralKeyboard PERIPHERALS::CPeripheralMouse PERIPHERALS::CPeripheralNIC PERIPHERALS::CPeripheralTuner

Public Member Functions

 CPeripheral (CPeripherals &manager, const PeripheralScanResult &scanResult, CPeripheralBus *bus)
 
 ~CPeripheral (void) override
 
bool operator== (const CPeripheral &right) const
 
bool operator!= (const CPeripheral &right) const
 
bool operator== (const PeripheralScanResult &right) const
 
bool operator!= (const PeripheralScanResult &right) const
 
const std::string & FileLocation (void) const
 
const std::string & Location (void) const
 
int VendorId (void) const
 
const char * VendorIdAsString (void) const
 
int ProductId (void) const
 
const char * ProductIdAsString (void) const
 
PeripheralType Type (void) const
 
PeripheralBusType GetBusType (void) const
 
const std::string & DeviceName (void) const
 
bool IsHidden (void) const
 
void SetHidden (bool bSetTo=true)
 
const std::string & GetVersionInfo (void) const
 
virtual std::string GetIcon () const
 Get an icon for this peripheral.
 
bool HasFeature (const PeripheralFeature feature) const
 Check whether this device has the given feature.
 
void GetFeatures (std::vector< PeripheralFeature > &features) const
 Get all features that are supported by this device.
 
bool Initialise (void)
 Initialises the peripheral.
 
virtual bool InitialiseFeature (const PeripheralFeature feature)
 Initialise one of the features of this peripheral.
 
virtual void OnUserNotification ()
 Briefly activate a feature to notify the user.
 
virtual bool TestFeature (PeripheralFeature feature)
 Briefly test one of the features of this peripheral.
 
virtual void OnSettingChanged (const std::string &strChangedSetting)
 Called when a setting changed.
 
virtual void OnDeviceRemoved (void)
 Called when this device is removed, before calling the destructor.
 
virtual void GetSubdevices (PeripheralVector &subDevices) const
 Get all subdevices if this device is multifunctional.
 
virtual bool IsMultiFunctional (void) const
 
virtual void AddSetting (const std::string &strKey, const std::shared_ptr< const CSetting > &setting, int order)
 Add a setting to this peripheral. This will overwrite a previous setting with the same key.
 
virtual bool HasSetting (const std::string &strKey) const
 Check whether a setting is known with the given key.
 
virtual bool HasSettings (void) const
 
virtual bool HasConfigurableSettings (void) const
 
virtual const std::string GetSettingString (const std::string &strKey) const
 Get the value of a setting.
 
virtual bool SetSetting (const std::string &strKey, const std::string &strValue)
 
virtual void SetSettingVisible (const std::string &strKey, bool bSetTo)
 
virtual bool IsSettingVisible (const std::string &strKey) const
 
virtual int GetSettingInt (const std::string &strKey) const
 
virtual bool SetSetting (const std::string &strKey, int iValue)
 
virtual bool GetSettingBool (const std::string &strKey) const
 
virtual bool SetSetting (const std::string &strKey, bool bValue)
 
virtual float GetSettingFloat (const std::string &strKey) const
 
virtual bool SetSetting (const std::string &strKey, float fValue)
 
virtual void PersistSettings (bool bExiting=false)
 
virtual void LoadPersistedSettings (void)
 
virtual void ResetDefaultSettings (void)
 
virtual std::vector< std::shared_ptr< CSetting > > GetSettings (void) const
 
virtual bool ErrorOccured (void) const
 
virtual void RegisterJoystickDriverHandler (KODI::JOYSTICK::IDriverHandler *handler, bool bPromiscuous)
 
virtual void UnregisterJoystickDriverHandler (KODI::JOYSTICK::IDriverHandler *handler)
 
virtual void RegisterKeyboardDriverHandler (KODI::KEYBOARD::IKeyboardDriverHandler *handler, bool bPromiscuous)
 
virtual void UnregisterKeyboardDriverHandler (KODI::KEYBOARD::IKeyboardDriverHandler *handler)
 
virtual void RegisterMouseDriverHandler (KODI::MOUSE::IMouseDriverHandler *handler, bool bPromiscuous)
 
virtual void UnregisterMouseDriverHandler (KODI::MOUSE::IMouseDriverHandler *handler)
 
void RegisterInputHandler (KODI::JOYSTICK::IInputHandler *handler, bool bPromiscuous) override
 Register a handler for the provided input.
 
void UnregisterInputHandler (KODI::JOYSTICK::IInputHandler *handler) override
 Unregister a handler.
 
void RegisterKeyboardHandler (KODI::KEYBOARD::IKeyboardInputHandler *handler, bool bPromiscuous, bool forceDefaultMap) override
 Registers a handler to be called on keyboard input.
 
void UnregisterKeyboardHandler (KODI::KEYBOARD::IKeyboardInputHandler *handler) override
 Unregisters handler from keyboard input.
 
void RegisterMouseHandler (KODI::MOUSE::IMouseInputHandler *handler, bool bPromiscuous, bool forceDefaultMap) override
 Registers a handler to be called on mouse input.
 
void UnregisterMouseHandler (KODI::MOUSE::IMouseInputHandler *handler) override
 Unregisters handler from mouse input.
 
virtual void RegisterJoystickButtonMapper (KODI::JOYSTICK::IButtonMapper *mapper)
 
virtual void UnregisterJoystickButtonMapper (KODI::JOYSTICK::IButtonMapper *mapper)
 
virtual KODI::JOYSTICK::IDriverReceiverGetDriverReceiver ()
 
virtual KODI::KEYMAP::IKeymapGetKeymap (const std::string &controllerId)
 
virtual CDateTime LastActive () const
 Return the last time this peripheral was active.
 
virtual KODI::GAME::ControllerPtr ControllerProfile () const
 Get the controller profile that best represents this peripheral.
 
virtual void SetControllerProfile (const KODI::GAME::ControllerPtr &controller)
 Set the controller profile for this peripheral.
 
- Public Member Functions inherited from KODI::JOYSTICK::IInputProvider
virtual ~IInputProvider ()=default
 
- Public Member Functions inherited from KODI::KEYBOARD::IKeyboardInputProvider
virtual ~IKeyboardInputProvider ()=default
 
- Public Member Functions inherited from KODI::MOUSE::IMouseInputProvider
virtual ~IMouseInputProvider ()=default
 

Protected Member Functions

virtual void ClearSettings (void)
 

Protected Attributes

CPeripheralsm_manager
 
PeripheralType m_type
 
PeripheralBusType m_busType
 
PeripheralBusType m_mappedBusType
 
std::string m_strLocation
 
std::string m_strDeviceName
 
std::string m_strSettingsFile
 
std::string m_strFileLocation
 
int m_iVendorId
 
std::string m_strVendorId
 
int m_iProductId
 
std::string m_strProductId
 
std::string m_strVersionInfo
 
bool m_bInitialised = false
 
bool m_bHidden = false
 
bool m_bError = false
 
std::vector< PeripheralFeaturem_features
 
PeripheralVector m_subDevices
 
std::map< std::string, PeripheralDeviceSettingm_settings
 
std::set< std::string > m_changedSettings
 
CPeripheralBusm_bus
 
std::map< KODI::JOYSTICK::IInputHandler *, std::unique_ptr< KODI::JOYSTICK::IDriverHandler > > m_inputHandlers
 
std::map< KODI::KEYBOARD::IKeyboardInputHandler *, std::unique_ptr< KODI::KEYBOARD::IKeyboardDriverHandler > > m_keyboardHandlers
 
std::map< KODI::MOUSE::IMouseInputHandler *, std::unique_ptr< KODI::MOUSE::IMouseDriverHandler > > m_mouseHandlers
 
std::map< KODI::JOYSTICK::IButtonMapper *, std::unique_ptr< CAddonButtonMapping > > m_buttonMappers
 
KODI::GAME::ControllerPtr m_controllerProfile
 

Friends

class CGUIDialogPeripheralSettings
 

Constructor & Destructor Documentation

◆ CPeripheral()

CPeripheral::CPeripheral ( CPeripherals & manager,
const PeripheralScanResult & scanResult,
CPeripheralBus * bus )

◆ ~CPeripheral()

CPeripheral::~CPeripheral ( void )
override

Member Function Documentation

◆ AddSetting()

void CPeripheral::AddSetting ( const std::string & strKey,
const std::shared_ptr< const CSetting > & setting,
int order )
virtual

Add a setting to this peripheral. This will overwrite a previous setting with the same key.

Parameters
strKeyThe key of the setting.
settingThe setting.
Todo
add more types if needed

Reimplemented in PERIPHERALS::CPeripheralImon.

◆ ClearSettings()

void CPeripheral::ClearSettings ( void )
protectedvirtual

◆ ControllerProfile()

virtual KODI::GAME::ControllerPtr PERIPHERALS::CPeripheral::ControllerProfile ( ) const
inlinevirtual

Get the controller profile that best represents this peripheral.

Returns
The controller profile, or empty if unknown

Reimplemented in PERIPHERALS::CPeripheralJoystick, PERIPHERALS::CPeripheralKeyboard, and PERIPHERALS::CPeripheralMouse.

◆ DeviceName()

const std::string & PERIPHERALS::CPeripheral::DeviceName ( void ) const
inline

◆ ErrorOccured()

virtual bool PERIPHERALS::CPeripheral::ErrorOccured ( void ) const
inlinevirtual

◆ FileLocation()

const std::string & PERIPHERALS::CPeripheral::FileLocation ( void ) const
inline

◆ GetBusType()

PeripheralBusType PERIPHERALS::CPeripheral::GetBusType ( void ) const
inline

◆ GetDriverReceiver()

virtual KODI::JOYSTICK::IDriverReceiver * PERIPHERALS::CPeripheral::GetDriverReceiver ( )
inlinevirtual

◆ GetFeatures()

void CPeripheral::GetFeatures ( std::vector< PeripheralFeature > & features) const

Get all features that are supported by this device.

Parameters
featuresThe features.

◆ GetIcon()

std::string CPeripheral::GetIcon ( ) const
virtual

Get an icon for this peripheral.

Returns
Path to an icon, or skin icon file name

◆ GetKeymap()

virtual KODI::KEYMAP::IKeymap * PERIPHERALS::CPeripheral::GetKeymap ( const std::string & controllerId)
inlinevirtual

◆ GetSettingBool()

bool CPeripheral::GetSettingBool ( const std::string & strKey) const
virtual

◆ GetSettingFloat()

float CPeripheral::GetSettingFloat ( const std::string & strKey) const
virtual

◆ GetSettingInt()

int CPeripheral::GetSettingInt ( const std::string & strKey) const
virtual

◆ GetSettings()

std::vector< std::shared_ptr< CSetting > > CPeripheral::GetSettings ( void ) const
virtual

◆ GetSettingString()

const std::string CPeripheral::GetSettingString ( const std::string & strKey) const
virtual

Get the value of a setting.

Parameters
strKeyThe key to search.
Returns
The value or an empty string if it wasn't found.

◆ GetSubdevices()

void CPeripheral::GetSubdevices ( PeripheralVector & subDevices) const
virtual

Get all subdevices if this device is multifunctional.

Parameters
subDevicesThe subdevices.

◆ GetVersionInfo()

const std::string & PERIPHERALS::CPeripheral::GetVersionInfo ( void ) const
inline

◆ HasConfigurableSettings()

bool CPeripheral::HasConfigurableSettings ( void ) const
virtual
Returns
True when this device has any configurable settings, false otherwise.

◆ HasFeature()

bool CPeripheral::HasFeature ( const PeripheralFeature feature) const

Check whether this device has the given feature.

Parameters
featureThe feature to check for.
Returns
True when the device has the feature, false otherwise.

◆ HasSetting()

bool CPeripheral::HasSetting ( const std::string & strKey) const
virtual

Check whether a setting is known with the given key.

Parameters
strKeyThe key to search.
Returns
True when found, false otherwise.

◆ HasSettings()

bool CPeripheral::HasSettings ( void ) const
virtual
Returns
True when this device has any settings, false otherwise.

◆ Initialise()

bool CPeripheral::Initialise ( void )

Initialises the peripheral.

Returns
True when the peripheral has been initialised successfully, false otherwise.

◆ InitialiseFeature()

virtual bool PERIPHERALS::CPeripheral::InitialiseFeature ( const PeripheralFeature feature)
inlinevirtual

Initialise one of the features of this peripheral.

Parameters
featureThe feature to initialise.
Returns
True when the feature has been initialised successfully, false otherwise.

Reimplemented in PERIPHERALS::CPeripheralHID, PERIPHERALS::CPeripheralImon, PERIPHERALS::CPeripheralJoystick, PERIPHERALS::CPeripheralKeyboard, and PERIPHERALS::CPeripheralMouse.

◆ IsHidden()

bool PERIPHERALS::CPeripheral::IsHidden ( void ) const
inline

◆ IsMultiFunctional()

bool CPeripheral::IsMultiFunctional ( void ) const
virtual
Returns
True when this device is multifunctional, false otherwise.

◆ IsSettingVisible()

bool CPeripheral::IsSettingVisible ( const std::string & strKey) const
virtual

◆ LastActive()

CDateTime CPeripheral::LastActive ( ) const
virtual

Return the last time this peripheral was active.

Returns
The time of last activation, or invalid if unknown/never active

Reimplemented in PERIPHERALS::CPeripheralJoystick, PERIPHERALS::CPeripheralKeyboard, and PERIPHERALS::CPeripheralMouse.

◆ LoadPersistedSettings()

void CPeripheral::LoadPersistedSettings ( void )
virtual

◆ Location()

const std::string & PERIPHERALS::CPeripheral::Location ( void ) const
inline

◆ OnDeviceRemoved()

virtual void PERIPHERALS::CPeripheral::OnDeviceRemoved ( void )
inlinevirtual

Called when this device is removed, before calling the destructor.

Reimplemented in PERIPHERALS::CPeripheralImon.

◆ OnSettingChanged()

virtual void PERIPHERALS::CPeripheral::OnSettingChanged ( const std::string & strChangedSetting)
inlinevirtual

Called when a setting changed.

Parameters
strChangedSettingThe changed setting.

Reimplemented in PERIPHERALS::CPeripheralHID, and PERIPHERALS::CPeripheralImon.

◆ OnUserNotification()

virtual void PERIPHERALS::CPeripheral::OnUserNotification ( )
inlinevirtual

Briefly activate a feature to notify the user.

Reimplemented in PERIPHERALS::CPeripheralJoystick.

◆ operator!=() [1/2]

bool CPeripheral::operator!= ( const CPeripheral & right) const

◆ operator!=() [2/2]

bool CPeripheral::operator!= ( const PeripheralScanResult & right) const

◆ operator==() [1/2]

bool CPeripheral::operator== ( const CPeripheral & right) const

◆ operator==() [2/2]

bool CPeripheral::operator== ( const PeripheralScanResult & right) const

◆ PersistSettings()

void CPeripheral::PersistSettings ( bool bExiting = false)
virtual

◆ ProductId()

int PERIPHERALS::CPeripheral::ProductId ( void ) const
inline

◆ ProductIdAsString()

const char * PERIPHERALS::CPeripheral::ProductIdAsString ( void ) const
inline

◆ RegisterInputHandler()

void CPeripheral::RegisterInputHandler ( KODI::JOYSTICK::IInputHandler * handler,
bool bPromiscuous )
overridevirtual

Register a handler for the provided input.

Parameters
handlerThe handler to receive input provided by this class
bPromiscuousIf true, receives all input (including handled input) in the background

Implements KODI::JOYSTICK::IInputProvider.

◆ RegisterJoystickButtonMapper()

void CPeripheral::RegisterJoystickButtonMapper ( KODI::JOYSTICK::IButtonMapper * mapper)
virtual

◆ RegisterJoystickDriverHandler()

virtual void PERIPHERALS::CPeripheral::RegisterJoystickDriverHandler ( KODI::JOYSTICK::IDriverHandler * handler,
bool bPromiscuous )
inlinevirtual

◆ RegisterKeyboardDriverHandler()

virtual void PERIPHERALS::CPeripheral::RegisterKeyboardDriverHandler ( KODI::KEYBOARD::IKeyboardDriverHandler * handler,
bool bPromiscuous )
inlinevirtual

◆ RegisterKeyboardHandler()

void CPeripheral::RegisterKeyboardHandler ( KODI::KEYBOARD::IKeyboardInputHandler * handler,
bool bPromiscuous,
bool forceDefaultMap )
overridevirtual

Registers a handler to be called on keyboard input.

Parameters
handlerThe handler to receive keyboard input provided by this class
bPromiscuousTrue to observe all events without affecting the input's destination
forceDefaultMapAlways use the default keyboard buttonmap, avoiding buttonmaps provided by add-ons

Implements KODI::KEYBOARD::IKeyboardInputProvider.

◆ RegisterMouseDriverHandler()

virtual void PERIPHERALS::CPeripheral::RegisterMouseDriverHandler ( KODI::MOUSE::IMouseDriverHandler * handler,
bool bPromiscuous )
inlinevirtual

Reimplemented in PERIPHERALS::CPeripheralMouse.

◆ RegisterMouseHandler()

void CPeripheral::RegisterMouseHandler ( KODI::MOUSE::IMouseInputHandler * handler,
bool bPromiscuous,
bool forceDefaultMap )
overridevirtual

Registers a handler to be called on mouse input.

Parameters
handlerThe handler to receive mouse input provided by this class
bPromiscuousTrue to observe all events without affecting subsequent handlers
forceDefaultMapAlways use the default keyboard buttonmap, avoiding buttonmaps provided by add-ons

Implements KODI::MOUSE::IMouseInputProvider.

◆ ResetDefaultSettings()

void CPeripheral::ResetDefaultSettings ( void )
virtual

◆ SetControllerProfile()

virtual void PERIPHERALS::CPeripheral::SetControllerProfile ( const KODI::GAME::ControllerPtr & controller)
inlinevirtual

Set the controller profile for this peripheral.

Parameters
controllerThe new controller profile

Reimplemented in PERIPHERALS::CPeripheralJoystick.

◆ SetHidden()

void PERIPHERALS::CPeripheral::SetHidden ( bool bSetTo = true)
inline

◆ SetSetting() [1/4]

bool CPeripheral::SetSetting ( const std::string & strKey,
bool bValue )
virtual

◆ SetSetting() [2/4]

bool CPeripheral::SetSetting ( const std::string & strKey,
const std::string & strValue )
virtual

◆ SetSetting() [3/4]

bool CPeripheral::SetSetting ( const std::string & strKey,
float fValue )
virtual

◆ SetSetting() [4/4]

bool CPeripheral::SetSetting ( const std::string & strKey,
int iValue )
virtual

◆ SetSettingVisible()

void CPeripheral::SetSettingVisible ( const std::string & strKey,
bool bSetTo )
virtual

◆ TestFeature()

virtual bool PERIPHERALS::CPeripheral::TestFeature ( PeripheralFeature feature)
inlinevirtual

Briefly test one of the features of this peripheral.

Parameters
featureThe feature to test.
Returns
True if the test succeeded, false otherwise.

Reimplemented in PERIPHERALS::CPeripheralJoystick.

◆ Type()

PeripheralType PERIPHERALS::CPeripheral::Type ( void ) const
inline

◆ UnregisterInputHandler()

void CPeripheral::UnregisterInputHandler ( KODI::JOYSTICK::IInputHandler * handler)
overridevirtual

Unregister a handler.

Parameters
handlerThe handler that was receiving input

Implements KODI::JOYSTICK::IInputProvider.

◆ UnregisterJoystickButtonMapper()

void CPeripheral::UnregisterJoystickButtonMapper ( KODI::JOYSTICK::IButtonMapper * mapper)
virtual

◆ UnregisterJoystickDriverHandler()

virtual void PERIPHERALS::CPeripheral::UnregisterJoystickDriverHandler ( KODI::JOYSTICK::IDriverHandler * handler)
inlinevirtual

◆ UnregisterKeyboardDriverHandler()

virtual void PERIPHERALS::CPeripheral::UnregisterKeyboardDriverHandler ( KODI::KEYBOARD::IKeyboardDriverHandler * handler)
inlinevirtual

◆ UnregisterKeyboardHandler()

void CPeripheral::UnregisterKeyboardHandler ( KODI::KEYBOARD::IKeyboardInputHandler * handler)
overridevirtual

Unregisters handler from keyboard input.

Parameters
handlerThe handler that was receiving keyboard input

Implements KODI::KEYBOARD::IKeyboardInputProvider.

◆ UnregisterMouseDriverHandler()

virtual void PERIPHERALS::CPeripheral::UnregisterMouseDriverHandler ( KODI::MOUSE::IMouseDriverHandler * handler)
inlinevirtual

Reimplemented in PERIPHERALS::CPeripheralMouse.

◆ UnregisterMouseHandler()

void CPeripheral::UnregisterMouseHandler ( KODI::MOUSE::IMouseInputHandler * handler)
overridevirtual

Unregisters handler from mouse input.

Parameters
handlerThe handler that was receiving mouse input

Implements KODI::MOUSE::IMouseInputProvider.

◆ VendorId()

int PERIPHERALS::CPeripheral::VendorId ( void ) const
inline

◆ VendorIdAsString()

const char * PERIPHERALS::CPeripheral::VendorIdAsString ( void ) const
inline

Friends And Related Symbol Documentation

◆ CGUIDialogPeripheralSettings

friend class CGUIDialogPeripheralSettings
friend

Member Data Documentation

◆ m_bError

bool PERIPHERALS::CPeripheral::m_bError = false
protected

◆ m_bHidden

bool PERIPHERALS::CPeripheral::m_bHidden = false
protected

◆ m_bInitialised

bool PERIPHERALS::CPeripheral::m_bInitialised = false
protected

◆ m_bus

CPeripheralBus* PERIPHERALS::CPeripheral::m_bus
protected

◆ m_busType

PeripheralBusType PERIPHERALS::CPeripheral::m_busType
protected

◆ m_buttonMappers

std::map<KODI::JOYSTICK::IButtonMapper*, std::unique_ptr<CAddonButtonMapping> > PERIPHERALS::CPeripheral::m_buttonMappers
protected

◆ m_changedSettings

std::set<std::string> PERIPHERALS::CPeripheral::m_changedSettings
protected

◆ m_controllerProfile

KODI::GAME::ControllerPtr PERIPHERALS::CPeripheral::m_controllerProfile
protected

◆ m_features

std::vector<PeripheralFeature> PERIPHERALS::CPeripheral::m_features
protected

◆ m_inputHandlers

std::map<KODI::JOYSTICK::IInputHandler*, std::unique_ptr<KODI::JOYSTICK::IDriverHandler> > PERIPHERALS::CPeripheral::m_inputHandlers
protected

◆ m_iProductId

int PERIPHERALS::CPeripheral::m_iProductId
protected

◆ m_iVendorId

int PERIPHERALS::CPeripheral::m_iVendorId
protected

◆ m_keyboardHandlers

std::map<KODI::KEYBOARD::IKeyboardInputHandler*, std::unique_ptr<KODI::KEYBOARD::IKeyboardDriverHandler> > PERIPHERALS::CPeripheral::m_keyboardHandlers
protected

◆ m_manager

CPeripherals& PERIPHERALS::CPeripheral::m_manager
protected

◆ m_mappedBusType

PeripheralBusType PERIPHERALS::CPeripheral::m_mappedBusType
protected

◆ m_mouseHandlers

std::map<KODI::MOUSE::IMouseInputHandler*, std::unique_ptr<KODI::MOUSE::IMouseDriverHandler> > PERIPHERALS::CPeripheral::m_mouseHandlers
protected

◆ m_settings

std::map<std::string, PeripheralDeviceSetting> PERIPHERALS::CPeripheral::m_settings
protected

◆ m_strDeviceName

std::string PERIPHERALS::CPeripheral::m_strDeviceName
protected

◆ m_strFileLocation

std::string PERIPHERALS::CPeripheral::m_strFileLocation
protected

◆ m_strLocation

std::string PERIPHERALS::CPeripheral::m_strLocation
protected

◆ m_strProductId

std::string PERIPHERALS::CPeripheral::m_strProductId
protected

◆ m_strSettingsFile

std::string PERIPHERALS::CPeripheral::m_strSettingsFile
protected

◆ m_strVendorId

std::string PERIPHERALS::CPeripheral::m_strVendorId
protected

◆ m_strVersionInfo

std::string PERIPHERALS::CPeripheral::m_strVersionInfo
protected

◆ m_subDevices

PeripheralVector PERIPHERALS::CPeripheral::m_subDevices
protected

◆ m_type

PeripheralType PERIPHERALS::CPeripheral::m_type
protected

The documentation for this class was generated from the following files: