summaryrefslogtreecommitdiff
path: root/src/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/object.h')
-rw-r--r--src/object.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/object.h b/src/object.h
index 636c76a0..e12888e8 100644
--- a/src/object.h
+++ b/src/object.h
@@ -24,7 +24,9 @@
namespace dcp {
-/** Some part of a DCP that has a UUID */
+/** @class Object
+ * @brief Some part of a DCP that has a UUID.
+ */
class Object
{
public:
@@ -32,11 +34,13 @@ public:
Object (std::string id);
virtual ~Object () {}
+ /** @return ID */
std::string id () const {
return _id;
}
protected:
+ /** ID */
std::string _id;
};