htop/Object.h

46 lines
794 B
C
Raw Normal View History

2006-06-06 20:28:42 +00:00
/* Do not edit this file. It was automatically generated. */
2006-03-04 18:16:49 +00:00
#ifndef HEADER_Object
#define HEADER_Object
/*
2011-12-26 21:35:57 +00:00
htop - Object.h
2011-05-26 16:35:07 +00:00
(C) 2004-2011 Hisham H. Muhammad
2006-03-04 18:16:49 +00:00
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "RichString.h"
#ifndef DEBUG
#define Object_setClass(obj, class)
#endif
2006-03-04 18:16:49 +00:00
typedef struct Object_ Object;
typedef void(*Object_Display)(Object*, RichString*);
typedef int(*Object_Compare)(const void*, const void*);
2006-03-04 18:16:49 +00:00
typedef void(*Object_Delete)(Object*);
struct Object_ {
#ifdef DEBUG
2006-03-04 18:16:49 +00:00
char* class;
#endif
2006-03-04 18:16:49 +00:00
Object_Display display;
Object_Delete delete;
};
#ifdef DEBUG
extern char* OBJECT_CLASS;
2006-03-04 18:16:49 +00:00
#else
#define OBJECT_CLASS NULL
#endif
#ifdef DEBUG
2006-03-04 18:16:49 +00:00
void Object_setClass(void* this, char* class);
2006-03-04 18:16:49 +00:00
#endif
2006-03-04 18:16:49 +00:00
#endif