Changeset 92 for cpp/gdk/sstring.h


Ignore:
Timestamp:
07/02/13 22:31:23 (11 years ago)
Author:
Maciej Komosinski
Message:

SString::valueOf(value) can handle more argument types

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/gdk/sstring.h

    r81 r92  
    99#include <stdlib.h>
    1010#include <stdio.h>
     11
     12class ExtValue;  //this include would result in recurrent inclusion: #include "extvalue.h"
     13class ExtObject;
    1114
    1215class SBuf
     
    155158
    156159static const SString& valueOf(int);
     160static const SString& valueOf(long);
    157161static const SString& valueOf(double);
     162static const SString& valueOf(const SString&); //tylko do kompletu zeby mozna uzyc tej funkcji nie martwiac sie o typ argumentu
     163static SString valueOf(const ExtValue&); //tylko do kompletu zeby mozna uzyc tej funkcji nie martwiac sie o typ argumentu
     164static SString valueOf(const ExtObject&); //tylko do kompletu zeby mozna uzyc tej funkcji nie martwiac sie o typ argumentu
    158165
    159166static SString &empty();
Note: See TracChangeset for help on using the changeset viewer.