diff --git a/BigInt.hpp b/BigInt.hpp index 3bece2c..515e0a3 100644 --- a/BigInt.hpp +++ b/BigInt.hpp @@ -10,7 +10,7 @@ #include #include - +namespace mee{ class BigInt{ private: std::vector num; @@ -139,3 +139,4 @@ public: return number; } }; +} diff --git a/Stopwatch.hpp b/Stopwatch.hpp index 2f28200..eaa0932 100644 --- a/Stopwatch.hpp +++ b/Stopwatch.hpp @@ -9,7 +9,7 @@ #include - +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