From: Jeff Garland (jeff_at_[hidden])
Date: 2003-11-22 20:56:32


On Thu, 20 Nov 2003 12:30:22 -0800 (PST), David Sankel wrote
> It would be a useful feature if the Boost Date-Time
> library supported direct conversion from the __DATE__
> macro format. Is this in the scope of the library?
 
Hi David -
 
Sorry for the long delay...
 
So I assume what you want is something like:
 
  using namespace boost::gregorian;
  date d = from_string(__DATE__);
 
If so, this would be in the scope of the library. I'll put it on the todo
list -- I don't think this will get in the upcoming release, but maybe the
one after that.
 
Jeff