openMSX
PrinterPortDevice.hh
Go to the documentation of this file.
1 #ifndef PRINTERPORTDEVICE_HH
2 #define PRINTERPORTDEVICE_HH
3 
4 #include "Pluggable.hh"
5 #include "openmsx.hh"
6 
7 namespace openmsx {
8 
10 {
11 public:
17  virtual bool getStatus(EmuTime::param time) = 0;
18 
25  virtual void setStrobe(bool strobe, EmuTime::param time) = 0;
26 
33  virtual void writeData(byte data, EmuTime::param time) = 0;
34 
35  // Pluggable
36  virtual string_ref getClass() const;
37 };
38 
39 } // namespace openmsx
40 
41 #endif