Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/Ketsji/KX_TimeLogger.h')
-rw-r--r--source/gameengine/Ketsji/KX_TimeLogger.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/gameengine/Ketsji/KX_TimeLogger.h b/source/gameengine/Ketsji/KX_TimeLogger.h
index 16d97c1fe41..b2336c2c512 100644
--- a/source/gameengine/Ketsji/KX_TimeLogger.h
+++ b/source/gameengine/Ketsji/KX_TimeLogger.h
@@ -49,7 +49,7 @@ class KX_TimeLogger {
public:
/**
* Constructor.
- * @param maxNumMesasurements Maximum number of measurements stored (>1).
+ * \param maxNumMesasurements Maximum number of measurements stored (>1).
*/
KX_TimeLogger(unsigned int maxNumMeasurements = 10);
@@ -70,25 +70,25 @@ public:
/**
* Starts logging in current measurement.
- * @param now The current time.
+ * \param now The current time.
*/
virtual void StartLog(double now);
/**
* End logging in current measurement.
- * @param now The current time.
+ * \param now The current time.
*/
virtual void EndLog(double now);
/**
* Logs time in next measurement.
- * @param now The current time.
+ * \param now The current time.
*/
virtual void NextMeasurement(double now);
/**
* Returns average of all but the current measurement.
- * @return The average of all but the current measurement.
+ * \return The average of all but the current measurement.
*/
virtual double GetAverage(void) const;