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;
}
};
}