summaryrefslogtreecommitdiff
path: root/src/lib/audio_content.cc
blob: 74b8ea2cebd1099d45dd0c4359df45f22071b3f0 (plain)
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)
{

}