Updated for uniformity and random now working

This commit is contained in:
2021-07-03 02:39:50 -04:00
parent a0a89d510f
commit d579c1663b
3 changed files with 28 additions and 31 deletions

View File

@@ -19,17 +19,18 @@
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef STOPWATCH_HPP
#define STOPWATCH_HPP
#ifndef MEE_STOPWATCH_HPP
#define MEE_STOPWATCH_HPP
#include <chrono>
#include <sstream>
#include <iomanip>
namespace mee{
class Stopwatch{
public:
//Create an error class
@@ -202,6 +203,8 @@ std::ostream& operator<<(std::ostream& out, Stopwatch& timer){
bool num = timer.hasStopped;
return out;
}
} //end namespace mee
#endif //end STOPWATCH_HPP
#endif //end MEE_STOPWATCH_HPP