Revision: 57224
          http://sourceforge.net/p/brlcad/code/57224
Author:   tbrowder2
Date:     2013-08-28 15:29:09 +0000 (Wed, 28 Aug 2013)
Log Message:
-----------
remove spurious period

Modified Paths:
--------------
    brlcad/trunk/include/bu.h

Modified: brlcad/trunk/include/bu.h
===================================================================
--- brlcad/trunk/include/bu.h   2013-08-28 14:24:01 UTC (rev 57223)
+++ brlcad/trunk/include/bu.h   2013-08-28 15:29:09 UTC (rev 57224)
@@ -86,6 +86,7 @@
 
 #include <stdlib.h>
 #include <sys/types.h>
+#include <time.h>
 
 __BEGIN_DECLS
 
@@ -774,7 +775,6 @@
 BU_EXPORT extern bu_endian_t bu_byteorder(void);
 
 
-
 /*----------------------------------------------------------------------*/
 
 /** @addtogroup list */
@@ -1905,9 +1905,14 @@
  * These strings may or may not be individually allocated, it depends
  * on usage.
  */
+/* FIXME: struct name should be changed to reflect more date, say, 
bu_attribute_data */
 struct bu_attribute_value_pair {
-    const char *name;  /**< attribute name */
-    const char *value; /**< attribute value */
+    const char *name;      /**< attribute name          */
+    const char *value;      /**< attribute value         */
+    const char *created;    /**< attribute date created  */
+    const char *modified;   /**< attribute date modified */
+    const char *version;    /**< attribute version       */
+    const char *anamespace; /**< attribute anamespace    */
 };
 
 
@@ -2666,6 +2671,12 @@
 
 
 /**
+ * Get current UTC date-time for attribute creation or modification times.
+ */
+BU_EXPORT extern void bu_avs_set_date(struct bu_attribute_value_pair *app,
+                                     const char* typ);
+
+/**
  * Initialize avs with storage for len entries.
  */
 BU_EXPORT extern void bu_avs_init(struct bu_attribute_value_set *avp,
@@ -3866,7 +3877,6 @@
 BU_EXPORT extern bu_heap_func_t bu_heap_log(bu_heap_func_t log);
 
 
-
 /** @} */
 
 /** @addtogroup log */
@@ -6188,7 +6198,7 @@
 /**
  * Evaluate the current UTC time in ISO format as a string.
  *
- * The UTC time is written into the user-provided bu_vls struct. and is
+ * The UTC time is written into the user-provided bu_vls struct and is
  * also returned and guaranteed to be a non-null result, returning a
  * static "NULL" UTC time if an error is encountered.
  */

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to