openMSX
SETetrisDongle.hh
Go to the documentation of this file.
1 #ifndef SETETRISDONGLE_HH
2 #define SETETRISDONGLE_HH
3 
4 #include "JoystickDevice.hh"
5 
6 namespace openmsx {
7 
9 {
10 public:
12 
13  // Pluggable
14  virtual const std::string& getName() const;
15  virtual string_ref getDescription() const;
16  virtual void plugHelper(Connector& connector, EmuTime::param time);
17  virtual void unplugHelper(EmuTime::param time);
18 
19  // JoystickDevice
20  virtual byte read(EmuTime::param time);
21  virtual void write(byte value, EmuTime::param time);
22 
23  template<typename Archive>
24  void serialize(Archive& ar, unsigned version);
25 
26 private:
27  byte status;
28 };
29 
30 } // namespace openmsx
31 
32 #endif