summaryrefslogtreecommitdiff
path: root/src/main/idl/CommonTypes.idl
blob: 1e5334330b8060f40f278b914efd9cf0ae7949ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef __com_CommonTypes_Idl__
#define __com_CommonTypes_Idl__

/*
 * Copyright (C) 2001 CERN - European Organization for Nuclear Research
 * All rights reserved.
 *
 * @author $Author: abranson $ $Date: 2004/01/21 16:17:18 $
 * @version $Revision: 1.24 $
 */

#include <CommonExceptions.idl>

#pragma prefix "c2kernel.com"

module common
{

    /**************************************************************************
    * Describes the time by year, month, day, hour, minute and second
    * in Greenwich Mean Time (GMT) so it also describes the timezone by
    * providing the offset from GMT in seconds.
    *
    * @version 1.0
    * @author kovax
    **************************************************************************/
    struct  GTimeStamp
    {
        long mYear;
        long mMonth;
        long mDay;
        long mHour;
        long mMinute;
        long mSecond;
        long mTimeOffset; //in seconds
    };

    /**************************************************************************
    * Serialized UUID for Item identification. 
    * Converts to Java UUID with: new UUID(msb, lsb);
    *
    * @version 1.0
    **************************************************************************/    
    struct SystemKey
    {
    	unsigned long long msb;
    	unsigned long long lsb;
    };
    

}; //end of module common

#endif