
Overload public methods with local ones
//BigInteger.h
BigInteger();
BigInteger(int number);
BigInteger(long number);
BigInteger(long long number);
BigInteger(const BigInteger& bigInt);
//BigInteger pow(BigInteger const& firstInt, BigInteger const& otherInt) const;
//BigInteger.cpp
char charLimit = ((char) std::pow(2.0, sizeof(char)*8.0-1.0))-2;
/*
Need to use std::pow oder ::pow to definitively use the global defined function!
*/