Public Member Functions | |
DeviceTemplate () | |
DeviceTemplate (const DeviceTemplate &)=delete | |
DeviceTemplate (DeviceTemplate &&) noexcept=delete | |
DeviceTemplate & | operator= (const DeviceTemplate &)=delete |
DeviceTemplate & | operator= (DeviceTemplate &&) noexcept=delete |
~DeviceTemplate () override=default | |
bool | open (yarp::os::Searchable &config) override |
Open the DeviceDriver. | |
bool | close () override |
Close the DeviceDriver. | |
![]() | |
DeviceDriver () | |
DeviceDriver (const DeviceDriver &other)=delete | |
DeviceDriver (DeviceDriver &&other) noexcept=delete | |
DeviceDriver & | operator= (const DeviceDriver &other)=delete |
DeviceDriver & | operator= (DeviceDriver &&other) noexcept=delete |
virtual | ~DeviceDriver () |
virtual std::string | id () const |
Return the id assigned to the PolyDriver. | |
virtual void | setId (const std::string &id) |
Set the id for this device. | |
template<class T > | |
bool | view (T *&x) |
Get an interface to the device driver. | |
virtual DeviceDriver * | getImplementation () |
Some drivers are bureaucrats, pointing at others. | |
![]() | |
~DeviceTemplate_ParamsParser () override=default | |
bool | parseParams (const yarp::os::Searchable &config) override |
Parse the DeviceDriver parameters. | |
std::string | getDeviceType () const override |
std::string | getDocumentationOfDeviceParams () const override |
Get the documentation of the DeviceDriver's parameters. | |
std::vector< std::string > | getListOfParams () const override |
Return a list of all params used by the device. | |
![]() | |
virtual | ~IDeviceDriverParams () |
virtual std::string | getDeviceClassName () const =0 |
Get the name of the DeviceDriver class. | |
virtual std::string | getDeviceName () const =0 |
Get the name of the device (i.e. | |
Additional Inherited Members | |
![]() | |
const std::string | m_device_type = {"DeviceTemplate"} |
bool | m_parser_is_strict = false |
std::string | m_dummy_group_dummy_param1 = {"dummy_default_value"} |
double | m_dummy_param2 = {9.81} |
Definition at line 12 of file DeviceTemplate.h.
DeviceTemplate::DeviceTemplate | ( | ) |
Definition at line 24 of file DeviceTemplate.cpp.
|
delete |
|
deletenoexcept |
|
overridedefault |
|
overridevirtual |
Close the DeviceDriver.
Reimplemented from yarp::dev::DeviceDriver.
Definition at line 37 of file DeviceTemplate.cpp.
|
overridevirtual |
Open the DeviceDriver.
config | is a list of parameters for the device. Which parameters are effective for your device can vary. See device invocation examples. If there is no example for your device, you can run the "yarpdev" program with the verbose flag set to probe what parameters the device is checking. If that fails too, you'll need to read the source code (please nag one of the yarp developers to add documentation for your device). |
Reimplemented from yarp::dev::DeviceDriver.
Definition at line 29 of file DeviceTemplate.cpp.
|
delete |
|
deletenoexcept |