Queue

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Queue.h Source File

Queue.h

00001 #ifndef MBED_QUEUE_H
00002 #define MBED_QUEUE_H
00003  
00004 #include "mbed.h"
00005  
00006 class QUEUE {
00007 public:
00008     QUEUE();
00009     
00010     bool Put(char Input);      
00011     void Flush();
00012     char Get();  
00013     int  Number(); 
00014     bool Available();
00015 };
00016 #endif