Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 29, 2008, 7:36:33 PM (16 years ago)
Author:
nicolasc
Message:

just a test - don't morge this

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gcc43/src/core/OutputBuffer.h

    r1505 r1634  
    5656
    5757            template <class T>
    58             inline OutputBuffer& operator<<(T object)
     58            OutputBuffer& operator<<(T object)
    5959            {
    6060                this->stream_ << object;
     
    6868
    6969            template <class T>
    70             inline void add(T object)
     70            void add(T object)
    7171            {
    7272                this->stream_ << object;
     
    7575
    7676            template <class T>
    77             inline void addLine(T object)
     77            void addLine(T object)
    7878            {
    7979                this->stream_ << object << std::endl;
     
    8181            }
    8282
    83             inline void newline()
     83            void newline()
    8484            {
    8585                this->stream_ << std::endl;
     
    8787            }
    8888
    89             inline void flush()
     89            void flush()
    9090            {
    9191                this->stream_.flush();
Note: See TracChangeset for help on using the changeset viewer.