Minor fixes

Dependencies:   LPS25H hts221

Fork of Coursework by Group PAG

Queue.h

Committer:
pburtenshaw
Date:
2017-05-03
Revision:
42:4e0a96b52e65
Child:
43:4ddc392dd0cc

File content as of revision 42:4e0a96b52e65:

#ifndef Queue_H
#define Queue_H
#include "Reading.h"
 
class Queue{
       //variables  
       const int maxSize = 120;
       int front;
       int back;
       int count;
       Reading storage[maxSize];
       
       
       //realisticly what we need::
       //read values taking argument n
       //read values taking no argument 
       //take value and put it in the right place
       //delete with argument
       //delete without argument
       public:
       Queue();
       void read(int nR); // where nR is the number to read, if REAL ALL is typed then the method will be called by something like queue.read(queue.count).
       void deleteRecords(int nD); //as above but nD is number to delete
       void addRecord(Reading r);
       
       
       
};
    
    };
#endif