summaryrefslogtreecommitdiff
path: root/includes/dynamic_depth/planes.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/dynamic_depth/planes.h')
-rw-r--r--includes/dynamic_depth/planes.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/includes/dynamic_depth/planes.h b/includes/dynamic_depth/planes.h
index c38aad4..e3b41ea 100644
--- a/includes/dynamic_depth/planes.h
+++ b/includes/dynamic_depth/planes.h
@@ -10,7 +10,6 @@
#include "xmpmeta/xml/deserializer.h"
#include "xmpmeta/xml/serializer.h"
-namespace photos_editing_formats {
namespace dynamic_depth {
// THe list of planes in a Dynamic Depth Device t ype.
@@ -29,7 +28,7 @@ class Planes : public Element {
// failed for all the planes, one of the planes is null, or the list of
// planes was empty.
static std::unique_ptr<Planes> FromDeserializer(
- const xml::Deserializer& parent_deserializer);
+ const ::dynamic_depth::xmpmeta::xml::Deserializer& parent_deserializer);
// Disallow copying.
Planes(const Planes&) = delete;
@@ -39,7 +38,8 @@ class Planes : public Element {
std::unordered_map<string, string>* ns_name_href_map) override;
// Returns false if the list of planes is empty, or serialization fails.
- bool Serialize(xml::Serializer* serializer) const override;
+ bool Serialize(
+ ::dynamic_depth::xmpmeta::xml::Serializer* serializer) const override;
// Returns the number of plane elements in this Plane object.
int GetPlaneCount() const;
@@ -56,6 +56,5 @@ class Planes : public Element {
};
} // namespace dynamic_depth
-} // namespace photos_editing_formats
#endif // DYNAMIC_DEPTH_INCLUDES_DYNAMIC_DEPTH_PLANES_H_ // NOLINT