More tests.
[libdcp.git] / src / object.cc
index e9a4f62b9a40e7c2c2f0c0d27a475bac9872e92b..315e501aaf4403f37f5de4a68439d2b783a9489a 100644 (file)
 
 */
 
+/** @file  src/object.cc
+ *  @brief Object class.
+ */
+
 #include "object.h"
 #include "util.h"
 
 using std::string;
 using namespace dcp;
 
+/** Create an Object with a random ID. */
 Object::Object ()
        : _id (make_uuid ())
 {
 
 }
 
+/** Create an Object with a given ID.
+ *  @param id ID to use.
+ */
 Object::Object (string id)
        : _id (id)
 {