Patch level : 10.0 no patch
Files correlati : Ricompilazione Demo : [ ] Commento : Aggiunti alle Token_string i metodi add per reali e date. git-svn-id: svn://10.65.10.50/branches/R_10_00@23217 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
9661bf8dda
commit
7592e0f6dc
@ -609,6 +609,10 @@ public:
|
|||||||
void add(long n, int pos = -1);
|
void add(long n, int pos = -1);
|
||||||
// @cmember Aggiunge un intero
|
// @cmember Aggiunge un intero
|
||||||
void add(int n, int pos = -1);
|
void add(int n, int pos = -1);
|
||||||
|
// @cmember Aggiunge un reale
|
||||||
|
void add(const real r, int pos = -1);
|
||||||
|
// @cmember Aggiunge un reale
|
||||||
|
void add(const TDate d, int pos = -1);
|
||||||
// @cmember Inserisce una stringa
|
// @cmember Inserisce una stringa
|
||||||
void insert_at(const char* s, int n);
|
void insert_at(const char* s, int n);
|
||||||
// @cmember Toglie la stringa di posizione pos
|
// @cmember Toglie la stringa di posizione pos
|
||||||
@ -722,6 +726,11 @@ TToken_string& get_tmp_string(int len = -1);
|
|||||||
const TToken_string& empty_string();
|
const TToken_string& empty_string();
|
||||||
#define EMPTY_STRING empty_string()
|
#define EMPTY_STRING empty_string()
|
||||||
|
|
||||||
const char SLASH = '\\';
|
const char SLASH =
|
||||||
|
#if XVT_OS == XVT_OS_WIN32
|
||||||
|
'\\';
|
||||||
|
#else
|
||||||
|
'/';
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user