blob: b5419a058992e527355f7b84b9b6e9f27e764eb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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)
{
}
AudioContent::AudioContent (AudioContent const & o)
: Content (o)
{
}
|