Queue

Revision:
0:a09b38fe65c9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Queue.h	Tue Jun 04 19:31: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