Moved my classes to an appropriate namespace

This commit is contained in:
2018-11-08 17:38:08 -05:00
parent 8d9af8d84e
commit 00759b82d1
2 changed files with 4 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
#include <string>
#include <cmath>
namespace mee{
class BigInt{
private:
std::vector<int64_t> num;
@@ -139,3 +139,4 @@ public:
return number;
}
};
}

View File

@@ -9,7 +9,7 @@
#include <chrono>
namespace mee{
class Stopwatch{
private:
std::chrono::high_resolution_clock::time_point startTime;
@@ -80,5 +80,6 @@ public:
endTime = startTime = std::chrono::high_resolution_clock::time_point();
}
};
}
#endif //end STOPWATCH_HPP