diff options
author | Kostyantyn Ovechko <fastinetserver@gmail.com> | 2010-08-05 00:44:42 +0300 |
---|---|---|
committer | Kostyantyn Ovechko <fastinetserver@gmail.com> | 2010-08-05 00:44:42 +0300 |
commit | 162f048696c45792dd192223fc2786b54d9f0b21 (patch) | |
tree | b2a30780eaf0cdd60b6f89fad931b5f4ca1632c1 /tuiclient/str.h | |
parent | Fix: scrolling for distfile queue list. (diff) | |
download | idfetch-162f048696c45792dd192223fc2786b54d9f0b21.tar.gz idfetch-162f048696c45792dd192223fc2786b54d9f0b21.tar.bz2 idfetch-162f048696c45792dd192223fc2786b54d9f0b21.zip |
Use .o files instead of .cpp in tuiclient.h
Diffstat (limited to 'tuiclient/str.h')
-rw-r--r-- | tuiclient/str.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tuiclient/str.h b/tuiclient/str.h index ab1ba71..d0e16a9 100644 --- a/tuiclient/str.h +++ b/tuiclient/str.h @@ -42,7 +42,16 @@ class Tparts{ {}; }; -template<typename T> string toString(T t); + +int atoi(string num_str); +long atol(string num_str); + +//template<typename T> string toString(T t); +string toString(uint t); +string toString(int t); +string toString(ulong t); +string toString(long t); +string toString(bool t); Tparts split(string splitter, string str); vector <string> split_to_vector(string splitter, string str); |