Enhancement - Date::operator-

- Implemented Date::operator-, to allow subtractions of Durations.
This commit is contained in:
Paul Beckingham 2010-07-25 22:02:41 -04:00
parent 031c4c484d
commit cb4fe4fffb
3 changed files with 10 additions and 2 deletions

View file

@ -85,6 +85,7 @@ public:
bool sameYear (const Date&);
Date operator+ (const int);
Date operator- (const int);
Date& operator+= (const int);
Date& operator-= (const int);