<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7652.24">
<TITLE>RE: silly question</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->
<BR>
<P><FONT SIZE=2>Hello Carlos,<BR>
<BR>
You can always write OO applications in C, but you do have to think about a little. I've pasted a simple example below.<BR>
<BR>
The example allows for method overriding, and method overloading(just!). Operator overloading is missing though. It's hacked out of some code for iPodLinux, not Maemo, but it will work anywhere you have a C compiler.<BR>
<BR>
If you have a C++ compiler that's great, but you don't acually need it.<BR>
<BR>
Regards,<BR>
Bob.<BR>
<BR>
--- Object.h ----<BR>
<BR>
#ifndef _Object<BR>
#define _Object 1<BR>
<BR>
//////////////////////<BR>
// --- Constants ----<BR>
//////////////////////<BR>
<BR>
<BR>
///////////////////////////<BR>
// --- Object instance ---<BR>
///////////////////////////<BR>
<BR>
<BR>
typedef struct Object_objectInstance {<BR>
<BR>
int id;<BR>
<BR>
void (*destructor)(struct Object_objectInstance *thisPointer);<BR>
void (*destructorAsSupertype)(struct Object_objectInstance *thisPointer);<BR>
<BR>
} Object_objectInstance;<BR>
<BR>
<BR>
////////////////////////<BR>
// --- Constructors ---<BR>
////////////////////////<BR>
<BR>
// used to create this class as a leaf class<BR>
Object_objectInstance* Object_constructor(void);<BR>
<BR>
// used to create this class as a supertype<BR>
Object_objectInstance* Object_constructorAsSupertype(Object_objectInstance* thisPointerStorage);<BR>
<BR>
//////////////////////////<BR>
// --- Static methods ---<BR>
//////////////////////////<BR>
<BR>
#endif<BR>
<BR>
--- Object.c ---<BR>
<BR>
<BR>
#include <stdlib.h><BR>
<BR>
#include "Object.h"<BR>
<BR>
<BR>
///////////////////////<BR>
// --- Static Data ---<BR>
///////////////////////<BR>
<BR>
static int Object_uniqueId = 0;<BR>
<BR>
//////////////////////<BR>
// --- Destructor ---<BR>
//////////////////////<BR>
<BR>
void Object_destructorAsSupertype(Object_objectInstance* thisPointer ) {<BR>
<BR>
} // Object_destructorAsSupertype()<BR>
<BR>
void Object_destructor(Object_objectInstance* thisPointer ) {<BR>
<BR>
// pz_error("destructor must be overridden");<BR>
<BR>
} // Object_destructor()<BR>
<BR>
<BR>
//////////////////////////<BR>
// --- Static Methods ---<BR>
//////////////////////////<BR>
<BR>
///////////////////////////<BR>
// --- Dynamic Methods ---<BR>
///////////////////////////<BR>
<BR>
////////////////////////<BR>
// --- Constructors ---<BR>
////////////////////////<BR>
<BR>
Object_objectInstance* Object_constructorAsSupertype(Object_objectInstance* thisPointerStorage) {<BR>
<BR>
// Populate attributes<BR>
thisPointerStorage -> id = Object_uniqueId++;<BR>
<BR>
// Populate method pointers<BR>
thisPointerStorage -> destructor = &Object_destructor;<BR>
thisPointerStorage -> destructorAsSupertype = &Object_destructorAsSupertype;<BR>
<BR>
return thisPointerStorage;<BR>
<BR>
} // Object_constructorAsSupertype(thisPointerStorage)<BR>
<BR>
Object_objectInstance* Object_constructor(void) {<BR>
<BR>
// pz_error("The constructor must be overridden");<BR>
<BR>
} // Object_constructor()<BR>
<BR>
--- Character.h ---<BR>
<BR>
#ifndef _Character<BR>
#define _Character 1<BR>
<BR>
#include "Object.h"<BR>
<BR>
// Object instance<BR>
typedef struct Character_objectInstance {<BR>
<BR>
Object_objectInstance supertype;<BR>
<BR>
int value; // the value of the character as an integer (to allow for international 16 bit characters)<BR>
<BR>
void (*destructor)(struct Character_objectInstance *thisPointer);<BR>
void (*destructorAsSupertype)(struct Character_objectInstance *thisPointer);<BR>
<BR>
void (*printChar)(struct Character_objectInstance* thisPointer);<BR>
<BR>
} Character_objectInstance;<BR>
<BR>
<BR>
////////////////////////<BR>
// --- Constructors ---<BR>
////////////////////////<BR>
<BR>
// used to create this class as a leaf<BR>
Character_objectInstance* Character_constructor(int value );<BR>
<BR>
// used to create this class as a supertype<BR>
Character_objectInstance* M_Character_constructorAsSupertype(Character_objectInstance* thisPointer, int value);<BR>
<BR>
// static methods<BR>
<BR>
<BR>
#endif<BR>
<BR>
--- Character.c ---<BR>
<BR>
<BR>
#include <stdlib.h><BR>
#include <stdio.h><BR>
<BR>
#include "Object.h"<BR>
#include "Character.h"<BR>
<BR>
<BR>
///////////////////////<BR>
// --- Static Data ---<BR>
///////////////////////<BR>
<BR>
<BR>
<BR>
//////////////////////<BR>
// --- Destructor ---<BR>
//////////////////////<BR>
<BR>
void Character_destructorAsSupertype(Character_objectInstance* thisPointer ) {<BR>
<BR>
// Inform supertype<BR>
thisPointer -> supertype.destructorAsSupertype((Object_objectInstance*) thisPointer);<BR>
<BR>
} // Character_destructorAsSupertype()<BR>
<BR>
void Character_destructor(Character_objectInstance* thisPointer ) {<BR>
<BR>
Character_destructorAsSupertype(thisPointer);<BR>
free(thisPointer);<BR>
<BR>
} // Character_destructor()<BR>
<BR>
//////////////////////////<BR>
// --- Static Methods ---<BR>
//////////////////////////<BR>
<BR>
<BR>
///////////////////////////<BR>
// --- Dynamic Methods ---<BR>
///////////////////////////<BR>
<BR>
void Character_printChar (Character_objectInstance* thisPointer) {<BR>
<BR>
printf("Char = %d\n", thisPointer -> value);<BR>
<BR>
} // Character_printChar()<BR>
<BR>
<BR>
////////////////////////<BR>
// --- Constructors ---<BR>
////////////////////////<BR>
<BR>
<BR>
Character_objectInstance* Character_constructorAsSupertype(Character_objectInstance* thisPointerStorage, int value) {<BR>
<BR>
// construct supertype<BR>
Object_constructorAsSupertype((Object_objectInstance*) thisPointerStorage);<BR>
<BR>
// populate attributes<BR>
thisPointerStorage -> value = value;<BR>
<BR>
// Populate method pointers<BR>
thisPointerStorage -> destructor = &Character_destructor;<BR>
thisPointerStorage -> destructorAsSupertype = &Character_destructorAsSupertype;<BR>
thisPointerStorage -> printChar = &Character_printChar;<BR>
<BR>
return thisPointerStorage;<BR>
<BR>
} // Character_constructor(thisPointerStorage)<BR>
<BR>
Character_objectInstance* Character_constructor(int value) {<BR>
<BR>
Character_objectInstance* thisPointer = malloc(sizeof(Character_objectInstance));<BR>
return Character_constructorAsSupertype(thisPointer, value);<BR>
<BR>
} // Character_constructor()<BR>
<BR>
--- main.c ---<BR>
<BR>
#include <stdio.h><BR>
<BR>
#include "Character.h"<BR>
<BR>
int main( int argc, char** argv) {<BR>
<BR>
Character_objectInstance* ch = Character_constructor(0x30);<BR>
ch -> printChar(ch);<BR>
ch -> destructor(ch);<BR>
<BR>
} // main()<BR>
<BR>
</FONT>
</P>
</BODY>
</HTML>