/Users/craigcornelius/Projects/SPRING Mac Release 0.2/blockQueue.cpp

Go to the documentation of this file.
00001 #include "blockQueue.h"
00002 
00003 blockQueue::blockQueue(int initBlockSize, int initQueueSize)
00004 {
00005   blockSize = initBlockSize;
00006   queueSize = initQueueSize;
00007   data = new unsigned char[queueSize * blockSize];
00008   head = 0;
00009   tail = 0;
00010   currentSize = 0;
00011 }
00012 
00013 blockQueue::~blockQueue()
00014 {
00015   delete data;
00016 }

Generated on Thu Aug 30 11:03:13 2007 for SPRING Mac by  doxygen 1.5.3