MICO: An Open Source CORBA Implementation

This chapter gives an overview of how MICO implements the CORBAspecification, the implementation components it consists of,and how those components are used.
A CORBA implementation consists of the following logicalcomponents:
The ORB is implemented as a library ( libmico
| Note | Command line arguments understood by MICO applications |
Every MICO application has to call the ORB initialization function ORB_init() before using MICO functionality.
1: int main (int argc, char *argv[])2: {3: CORBA::ORB_var orb =4: CORBA::ORB_init (argc, argv, "mico-local-orb");5: ...6: }