summaryrefslogtreecommitdiff
path: root/src/xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/kdm_smpte.cc6
-rw-r--r--src/xml/kdm_smpte.h2
2 files changed, 1 insertions, 7 deletions
diff --git a/src/xml/kdm_smpte.cc b/src/xml/kdm_smpte.cc
index 00d84005..d56d6c2c 100644
--- a/src/xml/kdm_smpte.cc
+++ b/src/xml/kdm_smpte.cc
@@ -63,12 +63,6 @@ DCinemaSecurityMessage::as_xml () const
return writer.document;
}
-AuthenticatedPublic::AuthenticatedPublic ()
- : message_id ("urn:uuid:" + make_uuid ())
-{
-
-}
-
AuthenticatedPublic::AuthenticatedPublic (shared_ptr<const cxml::Node> node)
: message_id (node->string_child ("MessageId"))
, message_type (node->string_child ("MessageType"))
diff --git a/src/xml/kdm_smpte.h b/src/xml/kdm_smpte.h
index 2e94a368..8c5ea409 100644
--- a/src/xml/kdm_smpte.h
+++ b/src/xml/kdm_smpte.h
@@ -95,7 +95,7 @@ public:
class AuthenticatedPublic
{
public:
- AuthenticatedPublic ();
+ AuthenticatedPublic () {}
AuthenticatedPublic (boost::shared_ptr<const cxml::Node>);
void as_xml (Writer &, xmlpp::Element *) const;