Index: /trunk/psLib/src/astro/psTime.h
===================================================================
--- /trunk/psLib/src/astro/psTime.h	(revision 1210)
+++ /trunk/psLib/src/astro/psTime.h	(revision 1210)
@@ -0,0 +1,55 @@
+/** @file  psTime.h
+ *
+ *  @brief Provides time and timing utilities for psLib.
+ *
+ *  Time, time utilities, and conversion functions are defined for use with psLib astronomy functions.
+ *
+ *  @ingroup Time
+ *
+ *  @author Ross Harman, MHPCC
+ *
+ *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-13 00:35:26 $
+ *
+ *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ */
+
+#ifndef PSTIME_H
+#define PSTIME_H
+
+/// @addtogroup Time
+/// @{
+
+/******************************************************************************/
+/*  TYPE DEFINITIONS                                                          */
+/******************************************************************************/
+
+/** Struct containing psTime.
+ *
+ *  This struct defines current time in terms of seconds, nanoseconds, and attoseconds. 
+ */
+typedef struct
+{
+    long tv_sec;    /**< Seconds since epoch, Jan 1, 1970. */
+    long tv_nsec;   /**< Nanoseconds since last second. */
+    long tv_asec;   /**< Attoseconds since last nanosecond. */
+}
+psTime;
+
+/*****************************************************************************/
+/* FUNCTION PROTOTYPES                                                       */
+/*****************************************************************************/
+
+/** Get current UTC time.
+ *
+ * Gets current UTC timespec time.
+ *
+ *  @return  psTime*: Pointer to struct with current time.
+ */
+psTime* psGetTime(
+    psTime *time    /** Time to return or null for auto allocation. */
+);
+
+/// @}
+
+#endif
Index: /trunk/psLib/src/astronomy/psTime.h
===================================================================
--- /trunk/psLib/src/astronomy/psTime.h	(revision 1210)
+++ /trunk/psLib/src/astronomy/psTime.h	(revision 1210)
@@ -0,0 +1,55 @@
+/** @file  psTime.h
+ *
+ *  @brief Provides time and timing utilities for psLib.
+ *
+ *  Time, time utilities, and conversion functions are defined for use with psLib astronomy functions.
+ *
+ *  @ingroup Time
+ *
+ *  @author Ross Harman, MHPCC
+ *
+ *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-13 00:35:26 $
+ *
+ *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
+ */
+
+#ifndef PSTIME_H
+#define PSTIME_H
+
+/// @addtogroup Time
+/// @{
+
+/******************************************************************************/
+/*  TYPE DEFINITIONS                                                          */
+/******************************************************************************/
+
+/** Struct containing psTime.
+ *
+ *  This struct defines current time in terms of seconds, nanoseconds, and attoseconds. 
+ */
+typedef struct
+{
+    long tv_sec;    /**< Seconds since epoch, Jan 1, 1970. */
+    long tv_nsec;   /**< Nanoseconds since last second. */
+    long tv_asec;   /**< Attoseconds since last nanosecond. */
+}
+psTime;
+
+/*****************************************************************************/
+/* FUNCTION PROTOTYPES                                                       */
+/*****************************************************************************/
+
+/** Get current UTC time.
+ *
+ * Gets current UTC timespec time.
+ *
+ *  @return  psTime*: Pointer to struct with current time.
+ */
+psTime* psGetTime(
+    psTime *time    /** Time to return or null for auto allocation. */
+);
+
+/// @}
+
+#endif
