Some changes made in measures class for more reasonable code.
[speedfreak] / Client / measures.cpp
index c840ec0..724e926 100644 (file)
@@ -1,9 +1,38 @@
+/*
+ * CarMainWindow main class
+ *
+ * @author     Janne Änäkkälä <janne.anakkala@fudeco.com>
+ * @copyright  (c) 2010 Speed Freak team
+ * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
+ */
+
 #include "measures.h"
 
 Measures::Measures()
 {
 }
 
+/**
+  * Initializes measures class's member variables.
+  */
+void Measures::initializeMembers()
+{
+    this->setTime10kmh(0);
+    this->setTime20kmh(0);
+    this->setTime30kmh(0);
+    this->setTime40kmh(0);
+    this->setTime50kmh(0);
+    this->setTime60kmh(0);
+    this->setTime70kmh(0);
+    this->setTime80kmh(0);
+    this->setTime90kmh(0);
+    this->setTime100kmh(0);
+}
+
+/**
+ * Get the value of time10kmh
+ * @return time10kmh the time in qreal when speed has been 10 km/h
+ */
 qreal Measures::getTime10kmh()
 {
     return time10kmh;
@@ -54,6 +83,10 @@ qreal Measures::getTime100kmh()
     return time100kmh;
 }
 
+/**
+ * Set the given time in to the time10kmh
+ * @param pTime is time in qreal
+ */
 void Measures::setTime10kmh(qreal pTime)
 {
     time10kmh = pTime;