summaryrefslogtreecommitdiff
path: root/src/mxf_asset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mxf_asset.h')
-rw-r--r--src/mxf_asset.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mxf_asset.h b/src/mxf_asset.h
index 3a0c1071..308d2a98 100644
--- a/src/mxf_asset.h
+++ b/src/mxf_asset.h
@@ -61,7 +61,7 @@ public:
virtual bool equals (boost::shared_ptr<const Asset> other, EqualityOptions opt, boost::function<void (NoteType, std::string)> note) const;
- virtual void write_to_cpl (xmlpp::Node *, bool interop) const;
+ virtual void write_to_cpl (xmlpp::Element *, bool interop) const;
/** Fill in a ADSCP::WriteInfo struct.
* @param w struct to fill in.
@@ -89,8 +89,8 @@ public:
protected:
virtual std::string key_type () const = 0;
virtual std::string cpl_node_name () const = 0;
- virtual std::string cpl_node_namespace (bool) const {
- return "";
+ virtual std::pair<std::string, std::string> cpl_node_attribute (bool) const {
+ return std::make_pair ("", "");
}
/** Signal to emit to report progress, or 0 */