summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h b/src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h
index 27418445..e633bfc0 100644
--- a/src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h
+++ b/src/Spatial_searching/include/gudhi/Spatial_tree_data_structure.h
@@ -20,8 +20,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef GUDHI_POINT_CLOUD_H
-#define GUDHI_POINT_CLOUD_H
+#ifndef GUDHI_SPATIAL_TREE_DS_H_
+#define GUDHI_SPATIAL_TREE_DS_H_
#include <CGAL/Orthogonal_k_neighbor_search.h>
#include <CGAL/Orthogonal_incremental_neighbor_search.h>
@@ -34,6 +34,7 @@
#include <vector>
namespace Gudhi {
+namespace spatial_searching {
template <typename K, typename Point_container_>
class Spatial_tree_data_structure
@@ -164,6 +165,7 @@ protected:
Tree m_tree;
};
-} //namespace Gudhi
+} // namespace spatial_searching
+} // namespace Gudhi
-#endif // GUDHI_POINT_CLOUD_H
+#endif // GUDHI_SPATIAL_TREE_DS_H_