htop/Object.c

52 lines
837 B
C
Raw Normal View History

2006-03-04 18:16:49 +00:00
/*
htop
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 "Object.h"
#include "RichString.h"
#include "CRT.h"
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include "debug.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
char* OBJECT_CLASS = "Object";
2006-03-04 18:16:49 +00:00
#else
#define OBJECT_CLASS NULL
#endif
2006-03-04 18:16:49 +00:00
#ifdef DEBUG
2006-03-04 18:16:49 +00:00
void Object_setClass(void* this, char* class) {
((Object*)this)->class = class;
2006-03-04 18:16:49 +00:00
}
#endif