Αρχικοποίηση

Your library must be initialized before it can be used, to register the new types that it makes available. Also, the C library that you are wrapping might have its own initialization function that you should call. You can do this in an init() function that you can place in hand-coded init.h and init.cc files. This function should initialize your dependencies (such as the C function, and gtkmm) and call your generated wrap_init() function. For instance:

void init()
{
  Gtk::Main::init_gtkmm_internals(); //Sets up the g type system and the Glib::wrap() table.
  wrap_init(); //Tells the Glib::wrap() table about the libsomethingmm classes.
}

Η υλοποίηση της μεθόδου wrap_init() στο wrap_init.cc δημιουργείται από το generate_wrap_init.pl, αλλά η δήλωση στο wrap_init.h είναι κωδικοποιημένη με το χέρι, έτσι θα χρειαστεί να ρυθμίσετε το wrap_init.h έτσι ώστε η συνάρτηση wrap_init() να εμφανίζεται στον σωστό χώρο ονόματος C++.