summaryrefslogtreecommitdiff
path: root/tools.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-08-26 14:17:20 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2001-08-26 14:17:20 +0200
commit6f6891082885d6c68f1a7efd80f99a0c907a9a4b (patch)
tree0d1bab65caa4e601bd5c5569452d83ba80b2dedb /tools.h
parent7092907ccd846090da89cedf0cca216ff38c6205 (diff)
downloadvdr-6f6891082885d6c68f1a7efd80f99a0c907a9a4b.tar.gz
vdr-6f6891082885d6c68f1a7efd80f99a0c907a9a4b.tar.bz2
Sorting timers in the 'Timers' menu
Diffstat (limited to 'tools.h')
-rw-r--r--tools.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools.h b/tools.h
index fc30f3f5..2f89f3f0 100644
--- a/tools.h
+++ b/tools.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: tools.h 1.30 2001/08/25 13:20:54 kls Exp $
+ * $Id: tools.h 1.31 2001/08/26 12:52:49 kls Exp $
*/
#ifndef __TOOLS_H
@@ -95,6 +95,7 @@ private:
public:
cListObject(void);
virtual ~cListObject();
+ virtual bool operator< (const cListObject &ListObject) { return false; }
void Append(cListObject *Object);
void Unlink(void);
int Index(void);
@@ -115,6 +116,7 @@ public:
virtual void Clear(void);
cListObject *Get(int Index) const;
int Count(void) const;
+ void Sort(void);
};
template<class T> class cList : public cListBase {