Switchboard SDK
Loading...
Searching...
No Matches
switchboard::BoolPointerParameter Class Reference

BoolPointerParameter class. A boolean parameter class that wraps an external bool variable. More...

#include <BoolPointerParameter.hpp>

Inheritance diagram for switchboard::BoolPointerParameter:
switchboard::BoolParameter switchboard::Parameter

Public Member Functions

 BoolPointerParameter (const std::string name, bool *valuePointer)
 BoolPointerParameter constructor with a bool pointer.
 
 BoolPointerParameter (std::string name, std::atomic< bool > *atomicValuePointer)
 BoolPointerParameter constructor with an atomic bool pointer.
 
bool getValue () const override
 Gets the current value of the parameter.
 
void setValue (const bool newValue) override
 Sets a new value for the parameter.
 
- Public Member Functions inherited from switchboard::BoolParameter
 BoolParameter (const std::string name)
 BoolParameter constructor.
 
virtual ~BoolParameter ()=default
 BoolParameter destructor.
 
- Public Member Functions inherited from switchboard::Parameter
 Parameter (const Type type, const std::string name)
 
virtual ~Parameter ()=default
 Parameter destructor.
 
const std::string & getName () const
 Gets the name of the parameter.
 
Type getType () const
 Gets the type of the parameter.
 

Additional Inherited Members

- Public Types inherited from switchboard::Parameter
enum class  Type { Float , Bool , Int , UInt }
 
- Protected Attributes inherited from switchboard::Parameter
Type type
 
std::string name
 

Detailed Description

BoolPointerParameter class. A boolean parameter class that wraps an external bool variable.

Constructor & Destructor Documentation

◆ BoolPointerParameter() [1/2]

switchboard::BoolPointerParameter::BoolPointerParameter ( const std::string name,
bool * valuePointer )

BoolPointerParameter constructor with a bool pointer.

Parameters
nameThe name of the parameter.
valuePointerPointer to the boolean value.

◆ BoolPointerParameter() [2/2]

switchboard::BoolPointerParameter::BoolPointerParameter ( std::string name,
std::atomic< bool > * atomicValuePointer )

BoolPointerParameter constructor with an atomic bool pointer.

Parameters
nameThe name of the parameter.
atomicValuePointerAtomic pointer to the boolean value.

Member Function Documentation

◆ getValue()

bool switchboard::BoolPointerParameter::getValue ( ) const
overridevirtual

Gets the current value of the parameter.

Returns
The current value.

Implements switchboard::BoolParameter.

◆ setValue()

void switchboard::BoolPointerParameter::setValue ( const bool newValue)
overridevirtual

Sets a new value for the parameter.

Parameters
newValueThe new value for the parameter.

Implements switchboard::BoolParameter.