View Single Post
Old 03-22-2004, 08:54 PM   #5 (permalink)
Valmont
[code][/code] enforcer
 
Valmont's Avatar
 
Join Date: Mar 2003
Location: Netherlands
Posts: 1,544
Valmont is on a distinguished road
Oops, I forgot the main() function:
Code:
#include "CDate.h"

int main()
{
	Date MyDate;
	MyDate.print();
	MyDate.printJulian();
	
	cout<<endl;

	Date MyOtherDate(2, 29, 2004);
	MyOtherDate.print();
	MyOtherDate.printJulian();
	
	return 0;
}
__________________
Valmont is offline   Reply With Quote