#include #include "Date.h" using namespace std; // main drives the class int main() { Date today; // Instance of the Date class today.output(12, 1, 2012); getchar(); // this pauses the DOS screen return 0; }