Hello I am using boost Posix Time System. I have a class

class event{
private:
boost::posix_time::ptime time;

//some other stuufff

public:
string gettime(void);
}

//functions
string event::gettime(void){
return  to_iso_extended_string(time.time_of_day());
}

but to_iso_extended_string does not take type

boost::posix_time::time_duration

only type

boost::posix_time

this can be seen here

I want to return a string for later output e.t.c.

How can I solve this problem? I can't see a method in boost to convert

boost::posix_time::time_duration

to string. I am new to both C++ and boost so apologies if this is a real simple one.

link|improve this question

feedback

3 Answers

use operator<<

#include <boost/date_time/posix_time/posix_time.hpp>

#include <iostream>

int
main()
{
    using namespace boost::posix_time;
    const ptime start = microsec_clock::local_time();
    const ptime stop = microsec_clock::local_time();
    const time_duration elapsed = stop - start;
    std::cout << elapsed << std::endl;
}
mac:stackoverflow samm$ g++ posix_time.cc -I /opt/local/include    
mac:stackoverflow samm$ ./a.out
00:00:00.000485
mac:stackoverflow samm$ 

Note you'll need to use the posix_time.hpp header rather than posix_time_types.hpp to include the I/O operators.

link|improve this answer
feedback

You can use boost date/time library for converting the time to string.

link|improve this answer
that's where I've been looking but can't find a function for boost::posix_time::time_duration – Tommy Jan 19 '11 at 15:38
Please see here (Conversion to String): boost.org/doc/libs/1_45_0/doc/html/date_time/… – yasouser Jan 19 '11 at 15:55
This is where I am having the problem. That is what I have been using, They don not except type of "time_duration", so o_iso_extended_string(time) is ok as "time" is of type "ptime" but time.time_of_day() is of type "time_duration". – Tommy Jan 19 '11 at 17:58
feedback

Have you tried simply using the << operator:

std::stringstream ssDuration;
ssDuration << duration;

std::string str = ssDuration.str();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.