PropWare  3.0.0.229
C++ objects and CMake build system for Parallax Propeller
scancapable.h
Go to the documentation of this file.
1 
26 #pragma once
27 
28 // Need to include this since PropWare.h is not imported
29 #ifdef __PROPELLER_COG__
30 #define PropWare PropWare_cog
31 #endif
32 
33 namespace PropWare {
34 
38 class ScanCapable {
39  public:
44  virtual char get_char () = 0;
45 };
46 
47 }
PropWare::ScanCapable::get_char
virtual char get_char()=0
Read and return a single character. Whether the method is blocking or not depends entirely on the imp...
PropWare::ScanCapable
Interface for all classes capable of printing.
Definition: scancapable.h:38
PropWare
Generic definitions and functions for the Parallax Propeller.
Definition: runnable.h:33