Aleksandr Koptevtsov / arch_temp_stack
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TempData.h Source File

TempData.h

00001 #ifndef TEMPDATA_H
00002 #define TEMPDATA_H
00003  
00004 #include "TempData.h"
00005  
00006 class TempData
00007 {
00008   public:
00009     TempData();
00010     void PushData(float);
00011     float  PopData();
00012     float  GetData(int);
00013     int GetCount();
00014   private:
00015     int _count;
00016     float _buffer[10];
00017 };
00018  
00019 #endif