summaryrefslogtreecommitdiff
path: root/src/dcp.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-26 22:25:11 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-26 22:25:11 +0000
commit93096af59d8235235c0caed929b6f72dcf09cdc9 (patch)
tree379519075366d74a16b6912d6bc02fef05ce3700 /src/dcp.h
parent59886567974bd3e79d30a4a9425d86d50bf425f3 (diff)
A little tidying up.
Diffstat (limited to 'src/dcp.h')
-rw-r--r--src/dcp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dcp.h b/src/dcp.h
index 9f6d60fd..3f4c8418 100644
--- a/src/dcp.h
+++ b/src/dcp.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@
*/
/** @file src/dcp.h
- * @brief A class to create or read a DCP.
+ * @brief DCP class.
*/
#ifndef LIBDCP_DCP_H
@@ -73,6 +73,7 @@ public:
/** Compare this DCP with another, according to various options.
* @param other DCP to compare this one to.
* @param options Options to define what "equality" means.
+ * @param note Functor to handle notes made by the equality operation.
* @return true if the DCPs are equal according to EqualityOptions, otherwise false.
*/
bool equals (DCP const & other, EqualityOptions options, boost::function<void (NoteType, std::string)> note) const;
@@ -113,6 +114,7 @@ private:
/** the directory that we are writing to */
boost::filesystem::path _directory;
+ /** the assets that make up this DCP */
std::list<boost::shared_ptr<Asset> > _assets;
};