File:  [Public] / DOM / dom-core-glue.cc
Revision 1.1: download - view: text, annotated - select for diffs
Mon Jun 15 01:24:45 1998 UTC (25 years, 11 months ago) by daniel
Branches: MAIN
CVS tags: HEAD
Very small attempt for doing some Mico CORBA glue :-(, Daniel.

/*
 * dom-core-glue : glue for the DOM Core stubs generated by MICO
 */

#include <config.h>
#include <iostream.h>
#include <mico/naming.h>

#include "dom-core.h"

class DOM_impl : virtual public DOM_skel {
    Document_ptr createDocument( const char* type ) {
        domCreateDocument(type);
    }
};

class Document_impl : virtual public ::Document {
};

Webmaster