1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#include <libcxml/cxml.h> #include "audio_content.h" using boost::shared_ptr; AudioContent::AudioContent (boost::filesystem::path f) : Content (f) { } AudioContent::AudioContent (shared_ptr<const cxml::Node> node) : Content (node) { }