| 35 | |
| 36 | #include <locale> |
| 37 | bool isNumber(const string& s){ |
| 38 | locale loc; |
| 39 | std::string::const_iterator it = s.begin(); |
| 40 | while (it != s.end() && (std::isdigit(*it, loc))) ++it; |
| 41 | return !s.empty() && it == s.end(); |
| 42 | } |
| 43 | |
| 44 | ofxTLUIHeader::ofxTLUIHeader(){ |
| 45 | gui = NULL; |
nothing calls this directly
no outgoing calls
no test coverage detected