Added include guard

This commit is contained in:
2018-11-07 18:12:33 -05:00
parent 098a462e2b
commit 0344054a34

View File

@@ -4,6 +4,8 @@
//Modified: 10-30-2018 //Modified: 10-30-2018
//This file creates a class that can be used on many programs to time them //This file creates a class that can be used on many programs to time them
#ifndef STOPWATCH_HPP
#define STOPWATCH_HPP
#include <chrono> #include <chrono>
@@ -78,3 +80,5 @@ public:
endTime = startTime = std::chrono::high_resolution_clock::time_point(); endTime = startTime = std::chrono::high_resolution_clock::time_point();
} }
}; };
#endif //end STOPWATCH_HPP