C/C++
mico.txt
Associated article: The MICO CORBA Compliant System
Tags: C/C++
Published source code accompanying the article by Arno Puder in which he presents MICO, a freely-available CORBA implementation that supports IDL-to-C++ mapping, Dynamic Invocation Interface (DII), IIOP as native protocol, nested method invocations, and more. Also see MICO-2_2.ZIP.
The MICO CORBA-Compliant System
by Arno Puder
Listing One
// File: account.idl
interface Account {
void deposit( in unsigned long amount );
void withdraw( in unsigned long amount );
long balance();
};
Listing Two
// File: server.cc
#include <fstream.h>
#include "...


