MICO: An Open Source CORBA Implementation

| Note | MICO's IDL compiler translates IDL specifications to C++ stubs and skeletons |
MICO has an IDL compiler called idl, which is briefly describedin this section. The idl tool is used for translating IDL specificationsto C++ as well as feeding IDL specifications into the interfacerepository. The tool takes its input from either a file or an interfacerepository and generates code for C++ or CORBA IDL. If theinput is taken from a file, the idl tool can additionally feed thespecification into the interface repository. The synopsis for idl isas follows:
idl [--help] [--version] [--config] [-D] [-I \ [--no-exceptions] [--codegen-c++] [--no-codegen-c++] \ [--codegen-idl] [--no-codegen-idl] \ [--codegen-midl] [--no-codegen-midl] [--c++-impl] \ [--c++-suffix= ] [--hh-suffix= ] \ [--c++-skel] [--absolute-paths] [--emit-repoids] \ [--do-not-query-server-for-narrow] [--feed-ir] \ [--feed-included-defs] [--repo-id= ] [--name= \ [--pseudo] [--any] [--typecode] \ [--poa] [--no-poa] [--boa] [--no-boa] [--no-poa-ties] \ [--gen-included-defs] [--gen-full-dispatcher] [ ]
The following gives a detailed description of all the options.
Gives an overview of all supported command line options.
Prints the version of MICO.
Prints some important configuration information.
Defines a preprocessor macro. This option is equivalent tothe -D switch of most C compilers.
Defines a search path for #include directives. This option isequivalent to the -I switch of most C compilers.
Tells...