summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/kdm.cc2
-rw-r--r--src/kdm_smpte_xml.h (renamed from src/xml/kdm_smpte.h)8
-rw-r--r--test/kdm_test.cc2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/kdm.cc b/src/kdm.cc
index dc326556..3fd5d67c 100644
--- a/src/kdm.cc
+++ b/src/kdm.cc
@@ -28,7 +28,7 @@
#include "signer.h"
#include "cpl.h"
#include "mxf.h"
-#include "xml/kdm_smpte.h"
+#include "kdm_smpte_xml.h"
#include "AS_DCP.h"
#include "KM_util.h"
#include <libcxml/cxml.h>
diff --git a/src/xml/kdm_smpte.h b/src/kdm_smpte_xml.h
index 7154958a..70b7847e 100644
--- a/src/xml/kdm_smpte.h
+++ b/src/kdm_smpte_xml.h
@@ -17,7 +17,7 @@
*/
-/** @file src/xml/kdm_smpte.h
+/** @file src/kdm_smpte_xml.h
* @brief 1:1ish C++ representations of the XML schema for a SMPTE KDM.
*
* This file contains classes which map pretty-much 1:1 to the elements in a SMPTE KDM
@@ -29,10 +29,10 @@
* change very often.
*/
-#ifndef LIBDCP_XML_KDM_SMPTE_H
-#define LIBDCP_XML_KDM_SMPTE_H
+#ifndef LIBDCP_KDM_SMPTE_XML_H
+#define LIBDCP_KDM_SMPTE_XML_H
-#include "../exceptions.h"
+#include "exceptions.h"
#include <libcxml/cxml.h>
#include <libxml/parser.h>
#include <libxml++/libxml++.h>
diff --git a/test/kdm_test.cc b/test/kdm_test.cc
index f2ee9345..a3928f7a 100644
--- a/test/kdm_test.cc
+++ b/test/kdm_test.cc
@@ -19,7 +19,7 @@
#include <boost/test/unit_test.hpp>
#include "kdm.h"
-#include "xml/kdm_smpte.h"
+#include "kdm_smpte_xml.h"
using std::list;
using boost::shared_ptr;