Queue

Queue.h

Committer:
williequesada
Date:
2019-06-04
Revision:
0:a09b38fe65c9

File content as of revision 0:a09b38fe65c9:

#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