int main(int argc, char **argv) {

	Strings strObj;
	std::cout << "Conversion of 615 with base 7 to base 13 is:  "
			<< strObj.stringBaseConversion("615",7,13)
			<< std::endl;


	std::vector<std::string> mnemonics = strObj.phoneKeypadMnemonics("2276696");
	std::cout << "Number of possible mnemonics for phone number 2276696 is: "
			<< mnemonics.size() << std::endl;
	std::cout << "Example mnemonics: " << std::endl;
	std::cout << mnemonics[0] <<  std::endl << mnemonics[1] << std::endl << std::endl;


	std::cout << "String encoding for LLLLLLLLOOOVVVVEEEEEEEE is :"
			<< strObj.encoding("LLLLLLLLOOOVVVVEEEEEEEE") << std::endl << std::endl;

	std::cout << "String encoding for " << strObj.encoding("LLLLLLLLOOOVVVVEEEEEEEE") << " is :"
				<< strObj.decoding(strObj.encoding("LLLLLLLLOOOVVVVEEEEEEEE")) << std::endl << std::endl;

	return 0;
}