Go to the source code of this file.
Classes | |
| class | dlr::utilities::Date |
| As you'd expect, the Date class represents a date, like 2003-03-15. More... | |
Namespaces | |
| namespace | dlr::utilities |
| This namespace contains general utility functions and classes for string manipluation, program option parsing, working with time and filenames, and a few other odds and ends. | |
Functions | |
| bool | dlr::utilities::operator< (const Date &date0, const Date &date1) |
| This function compares two dates. | |
| bool | dlr::utilities::operator> (const Date &date0, const Date &date1) |
| This function compares two dates. | |
| bool | dlr::utilities::operator<= (const Date &date0, const Date &date1) |
| This function compares two dates. | |
| bool | dlr::utilities::operator>= (const Date &date0, const Date &date1) |
| This function compares two dates. | |
| bool | dlr::utilities::operator== (const Date &date0, const Date &date1) |
| This function compares two dates. | |
| bool | dlr::utilities::operator!= (const Date &date0, const Date &date1) |
| This function compares two dates. | |
| std::ostream & | dlr::utilities::operator<< (std::ostream &stream, const Date &date) |
| This operator formats a date in ISO standard format ("yyyy-mm-dd") for stream output. | |
| std::istream & | dlr::utilities::operator>> (std::istream &stream, Date &date) |
| This operator reads a date in ISO standard format ("yyyy-mm-dd") from an input stream. | |
Copyright (C) 2003-2007 David LaRose, dlr@cs.cmu.edu See accompanying file, LICENSE.TXT, for details.
Definition in file date.h.
1.5.8