This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////////////////////// | |
// Nathan Park (age 21) // | |
// August 4, 2013 // | |
////////////////////////// | |
#include <iostream> | |
#include <fstream> | |
#include <vector> | |
#include <numeric> // std::accumulate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Profiler | |
{ | |
public: | |
Profiler(); | |
~Profiler(); // couts the amount of time the profiler was alive | |
private: | |
float GetTime(); | |
float startSeconds; | |
float endSeconds; |
NewerOlder