summaryrefslogtreecommitdiff
path: root/src/Simplex_tree/include/gudhi/Simplex_tree/indexing_tag.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Simplex_tree/include/gudhi/Simplex_tree/indexing_tag.h')
-rw-r--r--src/Simplex_tree/include/gudhi/Simplex_tree/indexing_tag.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Simplex_tree/include/gudhi/Simplex_tree/indexing_tag.h b/src/Simplex_tree/include/gudhi/Simplex_tree/indexing_tag.h
new file mode 100644
index 00000000..3e395ae2
--- /dev/null
+++ b/src/Simplex_tree/include/gudhi/Simplex_tree/indexing_tag.h
@@ -0,0 +1,27 @@
+/* This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
+ * See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
+ * Author(s): Clément Maria
+ *
+ * Copyright (C) 2014 Inria
+ *
+ * Modification(s):
+ * - YYYY/MM Author: Description of the modification
+ */
+
+#ifndef SIMPLEX_TREE_INDEXING_TAG_H_
+#define SIMPLEX_TREE_INDEXING_TAG_H_
+
+namespace Gudhi {
+
+/** \brief Tag for a linear ordering of simplices.
+ *
+ * \implements IndexingTag
+ */
+struct linear_indexing_tag {
+};
+
+/* \brief Tag for a zigzag ordering of simplices. */
+// struct zigzag_indexing_tag {};
+} // namespace Gudhi
+
+#endif // SIMPLEX_TREE_INDEXING_TAG_H_