mirror of
https://bitbucket.org/Mattrixwv/my-classes.git
synced 2025-12-06 18:23:57 -05:00
Moved my classes to an appropriate namespace
This commit is contained in:
@@ -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;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user