Revision 20fc4889d8d651cb87f9902841b2a4876e453e05 authored by Trevor Bedford on 27 July 2009, 02:32:58 UTC, committed by Trevor Bedford on 27 July 2009, 02:32:58 UTC
1 parent f1cac0d
Raw File
series.h
/* series.h
Series class definition
This object stores a collection of measurements, outputs things like mean and 95% CIs
*/

#ifndef SERIES_H
#define SERIES_H

#include <map>
using std::map;
#include <set>
using std::set;
#include <vector>
using std::vector;

class Series {

public:
	Series();							// constructor
																		
private:


};

#endif
back to top