Ignore:
Timestamp:
Jun 19, 2013, 1:09:25 PM (11 years ago)
Author:
hock@…
Message:

..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sample/pingpong/PingPongMessage.cpp

    r5151 r12063  
    11#include "PingPongMessage.h"
     2#include <sstream>
    23
    34namespace ariba {
     
    1617}
    1718
    18 string PingPongMessage::info(){
    19         return "ping pong message id " + ariba::utility::Helper::ultos(id);
     19string PingPongMessage::info()
     20{
     21    ostringstream out;
     22    out << "ping pong message id " << (int) id;
     23        return out.str();
    2024}
    2125
Note: See TracChangeset for help on using the changeset viewer.