Changeset 104 for cpp/gdk/sstring.h


Ignore:
Timestamp:
07/23/13 18:15:30 (12 years ago)
Author:
sz
Message:

introducing object de/serialization - see serialtest.cpp
the core GDK classes can be now used in multiple threads (ifdef MULTITHREADED)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/gdk/sstring.h

    r92 r104  
    157157char charAt(int pos) const {return buf->txt[pos];}
    158158
    159 static const SString& valueOf(int);
    160 static const SString& valueOf(long);
    161 static const SString& valueOf(double);
    162 static const SString& valueOf(const SString&); //tylko do kompletu zeby mozna uzyc tej funkcji nie martwiac sie o typ argumentu
     159static SString valueOf(int);
     160static SString valueOf(long);
     161static SString valueOf(double);
     162static SString valueOf(const SString&); //tylko do kompletu zeby mozna uzyc tej funkcji nie martwiac sie o typ argumentu
    163163static SString valueOf(const ExtValue&); //tylko do kompletu zeby mozna uzyc tej funkcji nie martwiac sie o typ argumentu
    164164static SString valueOf(const ExtObject&); //tylko do kompletu zeby mozna uzyc tej funkcji nie martwiac sie o typ argumentu
Note: See TracChangeset for help on using the changeset viewer.