summaryrefslogtreecommitdiff
path: root/src/Hill.H
diff options
context:
space:
mode:
authorJohannes Hofmann <johannes.hofmann@gmx.de>2005-05-03 18:32:20 +0000
committerJohannes Hofmann <johannes.hofmann@gmx.de>2005-05-03 18:32:20 +0000
commite9f115b61a45ecd1d780032fc03f6da6b24e9b1b (patch)
treeed9bcb665be610fa3cd733d5937d0c8153dd555e /src/Hill.H
parentea841707d7403224065239fe4f382c3407e1ca46 (diff)
cleanups
cleanups
Diffstat (limited to 'src/Hill.H')
-rw-r--r--src/Hill.H16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/Hill.H b/src/Hill.H
index b850425..bd97121 100644
--- a/src/Hill.H
+++ b/src/Hill.H
@@ -1,5 +1,5 @@
//
-// "$Id: Hill.H,v 1.8 2005/05/03 20:16:40 hofmann Exp $"
+// "$Id: Hill.H,v 1.9 2005/05/03 20:32:20 hofmann Exp $"
//
// X11 header file for the Fast Light Tool Kit (FLTK).
//
@@ -28,8 +28,6 @@ class Mountain;
class Mountain {
private:
- Mountain *next;
- Mountain *next_visible;
public:
double phi, lam;
@@ -45,17 +43,7 @@ class Mountain {
Mountain(int x_tmp, int y_tmp);
- ~Mountain();
-
- void append(Mountain *m);
-
- void append_visible(Mountain *m);
-
- void clear_next_visible();
-
- Mountain * get_next();
-
- Mountain * get_next_visible();
+ ~Mountain();
};