Go to the documentation of this file.00001
00021 #ifndef FORTRESS_UTILS_H
00022 #define FORTRESS_UTILS_H
00023
00024 #include <string>
00025
00026 class Utils {
00027
00028 public:
00029 static int atoi(std::string);
00030 static double atod(std::string);
00031 static std::string itoa(int);
00032 };
00033
00034 #endif