summaryrefslogtreecommitdiffstats
path: root/src/BlockTracer.h
diff options
context:
space:
mode:
authorJulian Laubstein <julianlaubstein@yahoo.de>2015-07-31 19:26:33 +0200
committerJulian Laubstein <julianlaubstein@yahoo.de>2015-07-31 19:26:33 +0200
commitd19cde93fa3344f318fb0d4ffbf5bb0397a51a75 (patch)
treeb5ee221d8a8e63c7d3b7868da1db19bf717a6ffd /src/BlockTracer.h
parentMerge pull request #2400 from cuberite/OffloadBadChunks (diff)
parentUnified the doxy-comment format. (diff)
downloadcuberite-d19cde93fa3344f318fb0d4ffbf5bb0397a51a75.tar
cuberite-d19cde93fa3344f318fb0d4ffbf5bb0397a51a75.tar.gz
cuberite-d19cde93fa3344f318fb0d4ffbf5bb0397a51a75.tar.bz2
cuberite-d19cde93fa3344f318fb0d4ffbf5bb0397a51a75.tar.lz
cuberite-d19cde93fa3344f318fb0d4ffbf5bb0397a51a75.tar.xz
cuberite-d19cde93fa3344f318fb0d4ffbf5bb0397a51a75.tar.zst
cuberite-d19cde93fa3344f318fb0d4ffbf5bb0397a51a75.zip
Diffstat (limited to 'src/BlockTracer.h')
-rw-r--r--src/BlockTracer.h10
1 files changed, 5 insertions, 5 deletions
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;
} ;