From 6e4122e551eeb41d3e950b363dd837d5586fe560 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Fri, 31 Jul 2015 16:49:10 +0200 Subject: Unified the doxy-comment format. --- src/BlockTracer.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/BlockTracer.h') diff --git a/src/BlockTracer.h b/src/BlockTracer.h index c569b4ec6..ebc0668ee 100644 --- a/src/BlockTracer.h +++ b/src/BlockTracer.h @@ -88,7 +88,7 @@ public: } ; - /// Creates the BlockTracer parent with the specified callbacks + /** Creates the BlockTracer parent with the specified callbacks */ cBlockTracer(cWorld & a_World, cCallbacks & a_Callbacks) : m_World(&a_World), m_Callbacks(&a_Callbacks) @@ -96,7 +96,7 @@ public: } - /// Sets new world, returns the old one. Note that both need to be valid + /** Sets new world, returns the old one. Note that both need to be valid */ cWorld & SetWorld(cWorld & a_World) { cWorld & Old = *m_World; @@ -105,7 +105,7 @@ public: } - /// Sets new callbacks, returns the old ones. Note that both need to be valid + /** Sets new callbacks, returns the old ones. Note that both need to be valid */ cCallbacks & SetCallbacks(cCallbacks & a_NewCallbacks) { cCallbacks & Old = *m_Callbacks; @@ -114,10 +114,10 @@ public: } protected: - /// The world upon which to operate + /** The world upon which to operate */ cWorld * m_World; - /// The callback to use for reporting + /** The callback to use for reporting */ cCallbacks * m_Callbacks; } ; -- cgit v1.2.3