Skip to content
Snippets Groups Projects
Commit c02ca48c authored by Patrik Huber's avatar Patrik Huber
Browse files

Fixed wrong namespace of LandmarkMapper

parent 1cc814ac
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include <map> #include <map>
namespace eos { namespace eos {
namespace morphablemodel { namespace core {
/** /**
* Represents a mapping from one kind of landmarks * Represents a mapping from one kind of landmarks
...@@ -69,7 +69,7 @@ private: ...@@ -69,7 +69,7 @@ private:
std::map<std::string, std::string> landmarkMappings; ///< Mapping from one landmark name to a name in a different format. std::map<std::string, std::string> landmarkMappings; ///< Mapping from one landmark name to a name in a different format.
}; };
} /* namespace morphablemodel */ } /* namespace core */
} /* namespace eos */ } /* namespace eos */
#endif /* LANDMARKMAPPER_HPP_ */ #endif /* LANDMARKMAPPER_HPP_ */
...@@ -28,7 +28,7 @@ using boost::property_tree::ptree; ...@@ -28,7 +28,7 @@ using boost::property_tree::ptree;
using std::string; using std::string;
namespace eos { namespace eos {
namespace morphablemodel { namespace core {
LandmarkMapper::LandmarkMapper(boost::filesystem::path filename) LandmarkMapper::LandmarkMapper(boost::filesystem::path filename)
{ {
...@@ -66,5 +66,5 @@ string LandmarkMapper::convert(string landmarkName) ...@@ -66,5 +66,5 @@ string LandmarkMapper::convert(string landmarkName)
} }
} }
} /* namespace morphablemodel */ } /* namespace core */
} /* namespace eos */ } /* namespace eos */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment