2014-06-30 17:32:00 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
class Switch {
|
2015-04-26 19:19:57 -04:00
|
|
|
public:
|
2014-06-30 17:32:00 -07:00
|
|
|
virtual ~Switch() {}
|
2015-04-26 19:19:57 -04:00
|
|
|
|
2014-06-30 17:32:00 -07:00
|
|
|
/// \brief Returns true when the switch is triggered.
|
|
|
|
|
virtual bool Get() = 0;
|
|
|
|
|
};
|