So far, we have only discussed the IDL interfaces of GNOME::Store and GNOME::Stream. Now, we will show an example of the use these interfaces. In the example we use the GTK+-based implementation of the Bonobo interfaces.
/* TODO:
* here comes some nice example of the persistence interfaces.
*/
#include <stdio.h>
int main ()
{
printf("Hello, I'm Persistent\n");
return 0;
}
|