//
// Minimal CORBA Application
// Adapted from Advanced CORBA Programming with C++
//
module TimeTools {
	//
	// Defines a data structure that depicts a time of a day.
	//
	struct TimeOfDay {
                // 0 - 23
		short hour;
                // 0 - 59
		short minute;
                // 0 - 59
		short second;
	};

	//
	// Defines an interface to acquire Time knowledge.
	//
	interface Time {
		//
		// Acquires the server's current time.
		//
		TimeOfDay getTime();
	};
};

