/* Experiment2.h declares a class that times the vector and list prepend operations.
 * Begun by: Joel Adams, for CS 112 at Calvin College.
 * Student name:
 * Date:
 */
#ifndef EXPERIMENT2_H_
#define EXPERIMENT2_H_

#include "Timer.h"

class Experiment2 {
public:
	void run();
	void timePrependToVectorOfSize(unsigned size);	
	void timeRepeatedPrependUntilVectorIsSize(unsigned reps);
	
private:
	enum repetitions {REPS = 100000};
	Timer myTimer;
};

#endif /*EXPERIMENT2_H_*/

