mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
10 lines
149 B
C
10 lines
149 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class Switch {
|
||
|
|
public:
|
||
|
|
virtual ~Switch() {}
|
||
|
|
|
||
|
|
/// \brief Returns true when the switch is triggered.
|
||
|
|
virtual bool Get() = 0;
|
||
|
|
};
|