Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members

GraphData.cpp

Go to the documentation of this file.
00001 #include "GraphData.h"
00002 
00003 GraphData::GraphData(int bufferSize):
00004    bufferSize(bufferSize){
00005    data=new float[bufferSize];
00006    dataSize=0;
00007    index=0;
00008 }
00009 
00010 GraphData::~GraphData(){
00011    delete[] data;
00012 }

Thyrix homepageUsers' guide

(C) Arxia 2004-2005