diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-02 21:20:35 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-02 21:20:35 +0100 |
| commit | 956da4b106e14c49b179176acf6484c479c21094 (patch) | |
| tree | 0fee47183fd58dcf90ef059171c2e73d9916bb89 /src/lib/content.cc | |
| parent | 20cd8bdecb9667f7d838dbb7210f3e1a4765c662 (diff) | |
Various fixes.
Diffstat (limited to 'src/lib/content.cc')
| -rw-r--r-- | src/lib/content.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc index 977f2e2a7..0c21822cb 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -19,6 +19,13 @@ Content::Content (shared_ptr<const cxml::Node> node) _digest = node->string_child ("Digest"); } +Content::Content (Content const & o) + : _file (o._file) + , _digest (o._digest) +{ + +} + void Content::as_xml (xmlpp::Node* node) const { |
