summaryrefslogtreecommitdiff
path: root/src/Hill.H
diff options
context:
space:
mode:
authorJohannes Hofmann <johannes.hofmann@gmx.de>2005-06-19 14:54:02 +0000
committerJohannes Hofmann <johannes.hofmann@gmx.de>2005-06-19 14:54:02 +0000
commit1c92fda21514b790219dec9a2e5a85718cb83e73 (patch)
tree2ecff677606140a8332cc9d4f8487feb30d6780f /src/Hill.H
parentfe61e9b1f5b135f30bd1bf22a2be77ee85573ff9 (diff)
add duplicate removal
add duplicate removal
Diffstat (limited to 'src/Hill.H')
-rw-r--r--src/Hill.H7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Hill.H b/src/Hill.H
index 7f7581f..bba2b4d 100644
--- a/src/Hill.H
+++ b/src/Hill.H
@@ -1,5 +1,5 @@
//
-// "$Id: Hill.H,v 1.14 2005/05/10 17:16:54 hofmann Exp $"
+// "$Id: Hill.H,v 1.15 2005/06/19 16:54:02 hofmann Exp $"
//
// Copyright 2005 by Johannes Hofmann
//
@@ -37,6 +37,7 @@ class Hill {
int x, y;
int label_x, label_y;
char *name;
+ int duplicate;
Hill(const char *n, double p, double l, double h);
@@ -58,8 +59,12 @@ class Hills {
int load(const char *file);
+ void mark_duplicates(double dist);
+
void add(Hill *m);
+ void sort_phi();
+
void sort();
void clear();