summaryrefslogtreecommitdiff
path: root/src/object.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-26 21:35:02 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-26 21:35:02 +0000
commit59886567974bd3e79d30a4a9425d86d50bf425f3 (patch)
tree68e583a64144f5cbffede882e1187ecf737b2e43 /src/object.h
parent0703842433013ac1d5f79c09d7a8361dc2e565c8 (diff)
It builds again.
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;
};