1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-01 07:41:57 +00:00
r65emu/line.h
2023-10-03 15:25:53 +01:00

18 lines
260 B
C++

#ifndef _LINE_H
#define _LINE_H
class Line {
public:
Line(): _state(false) {}
operator bool() { return _state; }
void set(bool state) { _state = state; }
void clear() { set(false); }
void set() { set(true); }
private:
volatile bool _state;
};
#endif