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/video_content.cc | |
| parent | 20cd8bdecb9667f7d838dbb7210f3e1a4765c662 (diff) | |
Various fixes.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index e697a281d..f48813f60 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -26,6 +26,15 @@ VideoContent::VideoContent (shared_ptr<const cxml::Node> node) _video_frame_rate = node->number_child<float> ("VideoFrameRate"); } +VideoContent::VideoContent (VideoContent const & o) + : Content (o) + , _video_length (o._video_length) + , _video_size (o._video_size) + , _video_frame_rate (o._video_frame_rate) +{ + +} + void VideoContent::as_xml (xmlpp::Node* node) const { |
