Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / examples / Advanced / ch_3 / time.idl
blob8a476fccc310e7b726b8aa139ef6cff3a5998df9
2 //=============================================================================
3 /**
4 * @file time.idl
6 * @author Source code used in TAO has been modified and adapted from the codeprovided in the book
7 * @author "Advanced CORBA Programming with C++" by MichiHenning and Steve Vinoski. Copyright 1999. Addison-Wesley
8 * @author Reading
9 * @author MA. Used with permission of Addison-Wesley.Modified for TAO by Mike Moran <mm4@cs.wustl.edu>
11 //=============================================================================
14 struct TimeOfDay
16 short hour; // 0 - 23
17 short minute; // 0 - 59
18 short second; // 0 - 59
21 interface Time
23 TimeOfDay get_gmt ();