summaryrefslogtreecommitdiff
path: root/src/main/idl/CommonTypes.idl
diff options
context:
space:
mode:
authorAndrew Branson <andrew.branson@cern.ch>2012-05-30 08:37:45 +0200
committerAndrew Branson <andrew.branson@cern.ch>2012-05-30 08:37:45 +0200
commitb086f57f56bf0eb9dab9cf321a0f69aaaae84347 (patch)
tree8e6e26e8b7eed6abad7a17b093bdbb55c5e6b1ba /src/main/idl/CommonTypes.idl
parent22088ae8d2d5ff390518dbe1c4372325ffb3a647 (diff)
Initial Maven Conversion
Diffstat (limited to 'src/main/idl/CommonTypes.idl')
-rw-r--r--src/main/idl/CommonTypes.idl42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/main/idl/CommonTypes.idl b/src/main/idl/CommonTypes.idl
new file mode 100644
index 0000000..93395eb
--- /dev/null
+++ b/src/main/idl/CommonTypes.idl
@@ -0,0 +1,42 @@
+#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
+ };
+
+
+
+}; //end of module common
+
+#endif