/*Carlo C. Maley 7/16/94

This is a file for objects to plot data either in real time or from a file.

It includes:
	Histograms 
	
*/


#include "plotting.h"



/* Histograms -------------------------------------------------------------*/
cHistogram::cHistogram(char *title, char *xaxis, char *yaxis, unsigned int num_bars,
					   int max, int min, int x, int y, int width, int height)
					   /*This sets up the window for the histogram.*/
{

}

void cHistogram::display_data() /*Displays the current data on the graph.*/
{

}
void cHistogram::add(int datum) /*Increments the appropriate bar.*/
{

}

void cHistogram::remove(int datum) /*Decrements the appropriate bar.*/
{

}
