summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorljfa-ag <ljfa-ag@web.de>2015-06-28 16:58:12 +0200
committerljfa-ag <ljfa-ag@web.de>2015-06-28 16:58:12 +0200
commit87b3d6c2e151297860d039d614b36cc98238f47a (patch)
tree35ca0c47fee5553111fb801a983dc2532b587602 /include
parentd888face4b4029718909847d3686650b871acd83 (diff)
downloadProject-Tick-87b3d6c2e151297860d039d614b36cc98238f47a.tar.gz
Project-Tick-87b3d6c2e151297860d039d614b36cc98238f47a.zip
Add doxygen comment for equals
Diffstat (limited to 'include')
-rw-r--r--include/tag.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/tag.h b/include/tag.h
index 2bca595f9d..29e63a9c54 100644
--- a/include/tag.h
+++ b/include/tag.h
@@ -56,6 +56,10 @@ public:
friend bool operator!=(const tag& lhs, const tag& rhs);
private:
+ /**
+ * @brief Checks for equality to a tag of the same type
+ * @param rhs an instance of the same class as @c *this
+ */
virtual bool equals(const tag& rhs) const = 0;
};