WPILibC++
2020.3.2-60-g3011ebe
|
This class is a non-template base class for SendableChooser. More...
#include <SendableChooserBase.h>
Public Member Functions | |
SendableChooserBase (SendableChooserBase &&oth) | |
SendableChooserBase & | operator= (SendableChooserBase &&oth) |
![]() | |
virtual void | InitSendable (SendableBuilder &builder)=0 |
Initializes this Sendable object. More... | |
![]() | |
SendableHelper (const SendableHelper &rhs)=default | |
SendableHelper (SendableHelper &&rhs) | |
SendableHelper & | operator= (const SendableHelper &rhs)=default |
SendableHelper & | operator= (SendableHelper &&rhs) |
std::string | GetName () const |
Gets the name of this Sendable object. More... | |
void | SetName (const wpi::Twine &name) |
Sets the name of this Sendable object. More... | |
void | SetName (const wpi::Twine &subsystem, const wpi::Twine &name) |
Sets both the subsystem name and device name of this Sendable object. More... | |
std::string | GetSubsystem () const |
Gets the subsystem name of this Sendable object. More... | |
void | SetSubsystem (const wpi::Twine &subsystem) |
Sets the subsystem name of this Sendable object. More... | |
Protected Attributes | |
std::string | m_defaultChoice |
std::string | m_selected |
bool | m_haveSelected = false |
wpi::SmallVector< nt::NetworkTableEntry, 2 > | m_activeEntries |
wpi::mutex | m_mutex |
int | m_instance |
Additional Inherited Members | |
![]() | |
void | SetName (const wpi::Twine &moduleType, int channel) |
Sets the name of the sensor with a channel number. More... | |
void | SetName (const wpi::Twine &moduleType, int moduleNumber, int channel) |
Sets the name of the sensor with a module and channel number. More... | |
void | AddChild (std::shared_ptr< Sendable > child) |
Add a child component. More... | |
void | AddChild (void *child) |
Add a child component. More... | |
This class is a non-template base class for SendableChooser.
It contains static, non-templated variables to avoid their duplication in the template class.