![]() | ![]() | ![]() | The liboaf Library | ![]() |
---|
#include <liboaf/liboaf.h>gboolean oaf_is_initialized (void);CORBA_ORB oaf_init (int argc, char **argv);CORBA_ORB oaf_orb_get (void);CORBA_Object oaf_name_service_get (CORBA_Environment *ev);
These functions allow you to initialize OAF and the ORB it is using. Initializing OAF launches the OAF daemon if it is not started.
gboolean oaf_is_initialized (void);
Tells you whether or not OAF is initialized.
Returns : | whether OAF is initialized or not. |
CORBA_ORB oaf_init (int argc, char **argv);
Initializes liboaf. Should be called before any other call to the library.
argc : | number of command-line arguments passed to the program. |
argv : | array of strings containing the command-line arguments of the program. |
Returns : | the ORB used by OAF. |
CORBA_ORB oaf_orb_get (void);
Returns the ORB used by OAF.
Returns : | the ORB used by OAF. |
<<< API Reference | Query and Activation >>> |