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 <string>
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
|
|
||||||
|
namespace mee{
|
||||||
class BigInt{
|
class BigInt{
|
||||||
private:
|
private:
|
||||||
std::vector<int64_t> num;
|
std::vector<int64_t> num;
|
||||||
@@ -139,3 +139,4 @@ public:
|
|||||||
return number;
|
return number;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
|
||||||
|
namespace mee{
|
||||||
class Stopwatch{
|
class Stopwatch{
|
||||||
private:
|
private:
|
||||||
std::chrono::high_resolution_clock::time_point startTime;
|
std::chrono::high_resolution_clock::time_point startTime;
|
||||||
@@ -80,5 +80,6 @@ public:
|
|||||||
endTime = startTime = std::chrono::high_resolution_clock::time_point();
|
endTime = startTime = std::chrono::high_resolution_clock::time_point();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
#endif //end STOPWATCH_HPP
|
#endif //end STOPWATCH_HPP
|
||||||
|
|||||||
Reference in New Issue
Block a user