summaryrefslogtreecommitdiff
path: root/src/parse
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse')
-rw-r--r--src/parse/asset_map.cc2
-rw-r--r--src/parse/asset_map.h2
-rw-r--r--src/parse/cpl.cc2
-rw-r--r--src/parse/cpl.h2
-rw-r--r--src/parse/pkl.cc2
-rw-r--r--src/parse/pkl.h2
-rw-r--r--src/parse/subtitle.cc4
-rw-r--r--src/parse/subtitle.h2
8 files changed, 9 insertions, 9 deletions
diff --git a/src/parse/asset_map.cc b/src/parse/asset_map.cc
index 484c2710..0b323fb3 100644
--- a/src/parse/asset_map.cc
+++ b/src/parse/asset_map.cc
@@ -29,7 +29,7 @@
using std::string;
using std::list;
using boost::shared_ptr;
-using namespace libdcp::parse;
+using namespace dcp::parse;
AssetMap::AssetMap (string file)
{
diff --git a/src/parse/asset_map.h b/src/parse/asset_map.h
index af3e8918..e3035593 100644
--- a/src/parse/asset_map.h
+++ b/src/parse/asset_map.h
@@ -25,7 +25,7 @@
#include <boost/shared_ptr.hpp>
#include <libcxml/cxml.h>
-namespace libdcp {
+namespace dcp {
namespace parse {
diff --git a/src/parse/cpl.cc b/src/parse/cpl.cc
index f6ce434c..d94fb68e 100644
--- a/src/parse/cpl.cc
+++ b/src/parse/cpl.cc
@@ -29,7 +29,7 @@
using std::string;
using std::bad_cast;
using boost::shared_ptr;
-using namespace libdcp::parse;
+using namespace dcp::parse;
CPL::CPL (string file)
{
diff --git a/src/parse/cpl.h b/src/parse/cpl.h
index 04bf9351..4889a1c4 100644
--- a/src/parse/cpl.h
+++ b/src/parse/cpl.h
@@ -26,7 +26,7 @@
#include <libcxml/cxml.h>
#include "../types.h"
-namespace libdcp {
+namespace dcp {
namespace parse {
diff --git a/src/parse/pkl.cc b/src/parse/pkl.cc
index bbf070ae..d0fa1556 100644
--- a/src/parse/pkl.cc
+++ b/src/parse/pkl.cc
@@ -26,7 +26,7 @@
using namespace std;
using namespace boost;
-using namespace libdcp::parse;
+using namespace dcp::parse;
PKL::PKL (string file)
{
diff --git a/src/parse/pkl.h b/src/parse/pkl.h
index 13d87fa1..f31eef7d 100644
--- a/src/parse/pkl.h
+++ b/src/parse/pkl.h
@@ -24,7 +24,7 @@
#include <boost/shared_ptr.hpp>
#include "../xml.h"
-namespace libdcp {
+namespace dcp {
namespace parse {
diff --git a/src/parse/subtitle.cc b/src/parse/subtitle.cc
index 612af716..3f9869b4 100644
--- a/src/parse/subtitle.cc
+++ b/src/parse/subtitle.cc
@@ -27,8 +27,8 @@ using std::list;
using boost::shared_ptr;
using boost::optional;
using boost::lexical_cast;
-using namespace libdcp;
-using namespace libdcp::parse;
+using namespace dcp;
+using namespace dcp::parse;
Font::Font (shared_ptr<const cxml::Node> node)
{
diff --git a/src/parse/subtitle.h b/src/parse/subtitle.h
index c20278a3..50c2ebc5 100644
--- a/src/parse/subtitle.h
+++ b/src/parse/subtitle.h
@@ -21,7 +21,7 @@
#include "../dcp_time.h"
#include "../types.h"
-namespace libdcp
+namespace dcp
{
namespace parse