Queue

Revision:
0:0d3e46cf065b
diff -r 000000000000 -r 0d3e46cf065b Queue.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Queue.h	Tue Jun 04 19:36:36 2019 +0000
@@ -0,0 +1,16 @@
+#ifndef MBED_QUEUE_H
+#define MBED_QUEUE_H
+ 
+#include "mbed.h"
+ 
+class QUEUE {
+public:
+    QUEUE();
+    
+    bool Put(char Input);      
+    void Flush();
+    char Get();  
+    int  Number(); 
+    bool Available();
+};
+#endif