openMSX
DummyPrinterPortDevice.hh
Go to the documentation of this file.
1 #ifndef DUMMYPRINTERPORTDEVICE_HH
2 #define DUMMYPRINTERPORTDEVICE_HH
3 
4 #include "PrinterPortDevice.hh"
5 
6 namespace openmsx {
7 
9 {
10 public:
11  virtual bool getStatus(EmuTime::param time);
12  virtual void setStrobe(bool strobe, EmuTime::param time);
13  virtual void writeData(byte data, EmuTime::param time);
14  virtual string_ref getDescription() const;
15  virtual void plugHelper(Connector& connector, EmuTime::param time);
16  virtual void unplugHelper(EmuTime::param time);
17 };
18 
19 } // namespace openmsx
20 
21 #endif