summaryrefslogtreecommitdiff
path: root/src/lib/content.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/content.cc')
-rw-r--r--src/lib/content.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc
index cca4d56de..0db93d5e3 100644
--- a/src/lib/content.cc
+++ b/src/lib/content.cc
@@ -109,3 +109,9 @@ Content::clone () const
as_xml (node);
return content_factory (film, shared_ptr<cxml::Node> (new cxml::Node (node)));
}
+
+string
+Content::technical_summary () const
+{
+ return String::compose ("%1 %2 %3", file(), digest(), start());
+}