summaryrefslogtreecommitdiff
path: root/src/lib/sndfile_content.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/sndfile_content.cc')
-rw-r--r--src/lib/sndfile_content.cc11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lib/sndfile_content.cc b/src/lib/sndfile_content.cc
index 53df4deea..4794e4d31 100644
--- a/src/lib/sndfile_content.cc
+++ b/src/lib/sndfile_content.cc
@@ -3,7 +3,8 @@
#include "i18n.h"
-using namespace std;
+using std::string;
+using boost::shared_ptr;
SndfileContent::SndfileContent (boost::filesystem::path f)
: Content (f)
@@ -12,6 +13,14 @@ SndfileContent::SndfileContent (boost::filesystem::path f)
}
+SndfileContent::SndfileContent (shared_ptr<const cxml::Node> node)
+ : Content (node)
+ , AudioContent (node)
+
+{
+
+}
+
string
SndfileContent::summary () const
{