summaryrefslogtreecommitdiff
path: root/src/Persistence_representations/concept/Topological_data_with_scalar_product.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Persistence_representations/concept/Topological_data_with_scalar_product.h')
-rw-r--r--src/Persistence_representations/concept/Topological_data_with_scalar_product.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/Persistence_representations/concept/Topological_data_with_scalar_product.h b/src/Persistence_representations/concept/Topological_data_with_scalar_product.h
index f32271c7..203a1d91 100644
--- a/src/Persistence_representations/concept/Topological_data_with_scalar_product.h
+++ b/src/Persistence_representations/concept/Topological_data_with_scalar_product.h
@@ -4,7 +4,7 @@
*
* Author(s): Pawel Dlotko
*
- * Copyright (C) 2015 INRIA (France)
+ * Copyright (C) 2017 INRIA (France)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -20,6 +20,13 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef CONCEPT_TOPOLOGICAL_DATA_WITH_SCALAR_PRODUCT_H_
+#define CONCEPT_TOPOLOGICAL_DATA_WITH_SCALAR_PRODUCT_H_
+
+namespace Gudhi {
+
+namespace Persistence_representations {
+
/** \brief The concept Topological_data_with_scalar_product describes the requirements
* for a type to implement a container that allows computations of scalar products.
@@ -29,3 +36,9 @@ class Topological_data_with_scalar_product
public:
double compute_scalar_product( const Topological_data_with_scalar_product& second );
};
+
+} // namespace Persistence_representations
+
+} // namespace Gudhi
+
+#endif // CONCEPT_TOPOLOGICAL_DATA_WITH_SCALAR_PRODUCT_H_