openMSX
MidiOutDevice.hh
Go to the documentation of this file.
1 #ifndef MIDIOUTDEVICE_HH
2 #define MIDIOUTDEVICE_HH
3 
4 #include "Pluggable.hh"
5 #include "SerialDataInterface.hh"
6 
7 namespace openmsx {
8 
10 {
11 public:
12  // Pluggable (part)
13  virtual string_ref getClass() const;
14 
15  // SerialDataInterface (part)
16  virtual void setDataBits(DataBits bits);
17  virtual void setStopBits(StopBits bits);
18  virtual void setParityBit(bool enable, ParityBit parity);
19 };
20 
21 } // namespace openmsx
22 
23 #endif