summaryrefslogtreecommitdiff
path: root/uisimulator/list.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-03-26 13:47:42 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-03-26 13:47:42 +0000
commite4469775794e43c6bb0c6cb00e7fa8f4d9fd788e (patch)
tree122f0cf7544da29585dc2205fe9c07ceef1e7452 /uisimulator/list.h
parentd2a47e88c162b410a23ede7caabb066f1f1924d0 (diff)
downloadrockbox-e4469775794e43c6bb0c6cb00e7fa8f4d9fd788e.tar.gz
rockbox-e4469775794e43c6bb0c6cb00e7fa8f4d9fd788e.zip
unused includes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/list.h')
-rw-r--r--uisimulator/list.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/uisimulator/list.h b/uisimulator/list.h
deleted file mode 100644
index 91a85869bc..0000000000
--- a/uisimulator/list.h
+++ /dev/null
@@ -1,38 +0,0 @@
1#ifndef LIST_H
2#define LIST_H
3
4
5class ListWalk {
6 public:
7 ListWalk(class List *list);
8 void restart();
9
10 void* getNext();
11
12 private:
13 int index;
14 class List *list;
15};
16
17class List {
18 friend ListWalk;
19 public:
20 List();
21
22 void* getNext(void *); // next after this
23
24 int getSize();
25
26 bool add(void *);
27 void *remove(void *);
28
29 private:
30 void **data;
31 int datasize;
32
33 int size;
34
35};
36
37
38#endif // LIST_H