From c475c637aba78366763cb122673ff836dd9e7e85 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 19 Feb 2000 18:00:00 +0100 Subject: Version 0.01 (Initial revision). --- tools.h | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 tools.h (limited to 'tools.h') diff --git a/tools.h b/tools.h new file mode 100644 index 0000000..43f8525 --- /dev/null +++ b/tools.h @@ -0,0 +1,54 @@ +/* + * tools.h: Various tools + * + * See the main source file 'osm.c' for copyright information and + * how to reach the author. + * + * $Id: tools.h 1.1 2000/02/19 13:36:48 kls Exp $ + */ + +#ifndef __TOOLS_H +#define __TOOLS_H + +#include + +//TODO +#define dsyslog syslog +#define esyslog syslog +#define isyslog syslog + +class cListObject { +private: + cListObject *prev, *next; +public: + cListObject(void); + virtual ~cListObject(); + void Append(cListObject *Object); + void Unlink(void); + int Index(void); + cListObject *Prev(void) { return prev; } + cListObject *Next(void) { return next; } + }; + +class cListBase { +protected: + cListObject *objects, *lastObject; + cListBase(void); +public: + virtual ~cListBase(); + void Add(cListObject *Object); + void Del(cListObject *Object); + void Clear(void); + cListObject *Get(int Index); + int Count(void); + }; + +template class cList : public cListBase { +public: + T *Get(int Index) { return (T *)cListBase::Get(Index); } + T *First(void) { return (T *)objects; } + }; + +int time_ms(void); + +#endif //__TOOLS_H -- cgit v1.2.3