From: Jason Dolan (jason_at_[hidden])
Date: 2006-06-27 12:37:55


I'm trying to get the age of someone in Years and/or months and/or days.

I've tried:

date_period dp(day_clock::local_day(), birthdate);
cout << "You are " << dp.length() << " old" << endl;

But that only calculates days. Is there a static function available
that will turn days into months. and days into years?

Thanks

-Jason