2006-03-04 18:16:49 +00:00
|
|
|
/*
|
2011-12-26 21:35:57 +00:00
|
|
|
htop - Object.c
|
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"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#include "CRT.h"
|
2011-12-26 21:35:57 +00:00
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
/*{
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "RichString.h"
|
2006-07-11 06:13:32 +00:00
|
|
|
|
|
|
|
#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*);
|
2006-07-11 06:13:32 +00:00
|
|
|
typedef int(*Object_Compare)(const void*, const void*);
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef void(*Object_Delete)(Object*);
|
|
|
|
|
|
|
|
struct Object_ {
|
2006-07-11 06:13:32 +00:00
|
|
|
#ifdef DEBUG
|
2006-03-04 18:16:49 +00:00
|
|
|
char* class;
|
2006-07-11 06:13:32 +00:00
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
Object_Display display;
|
|
|
|
Object_Delete delete;
|
|
|
|
};
|
|
|
|
}*/
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
char* OBJECT_CLASS = "Object";
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#else
|
|
|
|
#define OBJECT_CLASS NULL
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#ifdef DEBUG
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
void Object_setClass(void* this, char* class) {
|
|
|
|
((Object*)this)->class = class;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#endif
|