summaryrefslogtreecommitdiffstats
path: root/src/math/intpoint.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-08-11 18:39:16 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-08-11 18:39:16 +0200
commit1996507fd3d4d9de90de99845b71a6bf3fbe62da (patch)
tree6dca78a855a8f0eacb3aecd230d337453ebca2ce /src/math/intpoint.h
parent7f80ca297154809523cd533edf1842ab1ae391aa (diff)
downloadcolobot-1996507fd3d4d9de90de99845b71a6bf3fbe62da.tar.gz
colobot-1996507fd3d4d9de90de99845b71a6bf3fbe62da.tar.bz2
colobot-1996507fd3d4d9de90de99845b71a6bf3fbe62da.zip
Documentation update
- updated Doxyfile - added/changed file, dir and namespace descriptions - fixed some errors in doxygen tags
Diffstat (limited to 'src/math/intpoint.h')
-rw-r--r--src/math/intpoint.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/math/intpoint.h b/src/math/intpoint.h
index 476e67b..8e13b19 100644
--- a/src/math/intpoint.h
+++ b/src/math/intpoint.h
@@ -14,18 +14,18 @@
// * You should have received a copy of the GNU General Public License
// * along with this program. If not, see http://www.gnu.org/licenses/.
-/** @defgroup MathIntPointModule math/intpoint.h
- Contains the IntPoint struct.
+/**
+ * \file math/intpoint.h
+ * \brief IntPoint struct
*/
#pragma once
namespace Math {
-/* @{ */ // start of group
-
/**
- * \struct IntPoint 2D Point with integer coords
+ * \struct IntPoint
+ * \brief 2D Point with integer coords
*
* Analog of WinAPI's POINT struct.
*/
@@ -39,6 +39,4 @@ struct IntPoint
IntPoint(int aX = 0, int aY = 0) : x(aX), y(aY) {}
};
-/* @} */ // end of group
-
}; // namespace Math