Merge branch 'master' into content-rework-take5
[dcpomatic.git] / src / lib / audio_content.cc
1 #include <libcxml/cxml.h>
2 #include "audio_content.h"
3
4 using boost::shared_ptr;
5
6 AudioContent::AudioContent (boost::filesystem::path f)
7         : Content (f)
8 {
9
10 }
11
12 AudioContent::AudioContent (shared_ptr<const cxml::Node> node)
13         : Content (node)
14 {
15
16 }