Revision: 41769
          http://brlcad.svn.sourceforge.net/brlcad/?rev=41769&view=rev
Author:   davidloman
Date:     2010-12-22 14:42:15 +0000 (Wed, 22 Dec 2010)

Log Message:
-----------
Hrm, I think my svn client might be acting up.  This is the second half of 
commit r41761

Modified Paths:
--------------
    rt^3/trunk/src/utility/Logger.cxx

Modified: rt^3/trunk/src/utility/Logger.cxx
===================================================================
--- rt^3/trunk/src/utility/Logger.cxx   2010-12-22 14:39:21 UTC (rev 41768)
+++ rt^3/trunk/src/utility/Logger.cxx   2010-12-22 14:42:15 UTC (rev 41769)
@@ -25,7 +25,10 @@
 
 #include "Logger.h"
 #include <QtCore/QTime>
+
 #include "brlcad/bu.h"
+
+#include <sys/time.h>
 #include <iomanip>
 #include <sstream>
 
@@ -132,6 +135,14 @@
        }
 }
 
+quint64
+Logger::getCurrentTime()
+{
+       timeval tim;
+       gettimeofday(&tim, NULL);
+       quint64 now = (tim.tv_sec * 1000 ) + (tim.tv_usec/1000);
+       return now;
+}
 
 /*
  * Local Variables:


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

------------------------------------------------------------------------------
Forrester recently released a report on the Return on Investment (ROI) of
Google Apps. They found a 300% ROI, 38%-56% cost savings, and break-even
within 7 months.  Over 3 million businesses have gone Google with Google Apps:
an online email calendar, and document program that's accessible from your 
browser. Read the Forrester report: http://p.sf.net/sfu/googleapps-sfnew
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to