summaryrefslogtreecommitdiff
path: root/src/Bottleneck/concept/Persistence_diagram.h
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-03-19 13:23:57 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-03-19 13:23:57 +0000
commitf867ea24653ebeeb9ea9778fc5d216d793789bcf (patch)
tree6d6dd5437a10bc1d14231448c2a61cca6cee8f11 /src/Bottleneck/concept/Persistence_diagram.h
parent0e6fc7aeb5465ffbf0a1759789fa421f9ae0fb6e (diff)
parent8c820ca8f9da625084f94dc9b80bb936f2c7aa8a (diff)
Add of Bottleneck functionnality
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@493 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 18db594b00f5065caf703e0ef026c707c985be79
Diffstat (limited to 'src/Bottleneck/concept/Persistence_diagram.h')
-rw-r--r--src/Bottleneck/concept/Persistence_diagram.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Bottleneck/concept/Persistence_diagram.h b/src/Bottleneck/concept/Persistence_diagram.h
new file mode 100644
index 00000000..eaaf8bc5
--- /dev/null
+++ b/src/Bottleneck/concept/Persistence_diagram.h
@@ -0,0 +1,7 @@
+typedef typename std::pair<double,double> Diagram_point;
+
+struct Persistence_Diagram
+{
+ const_iterator<Diagram_point> cbegin() const;
+ const_iterator<Diagram_point> cend() const;
+};