Lek-sys
Lek-sys
Class stores everything it reads from the file in strings, without typization. For the sake of stability, portability and easy of use, I dont wont the class to throw exceptions...
You can always write something like this ```cpp namespace INI { template inline int string_to_t(const std::string& v) throw(...) { convstream ss; ss > out; if (out == 0 && v...
Yes, you are right, str.fail() is more universal method. As for throwing.. To my mind, throwing anything is not a very good idea if you write something, that should be...