Annotation of DOM/dom-core-glue.cc, revision 1.1

1.1     ! daniel      1: /*
        !             2:  * dom-core-glue : glue for the DOM Core stubs generated by MICO
        !             3:  */
        !             4: 
        !             5: #include <config.h>
        !             6: #include <iostream.h>
        !             7: #include <mico/naming.h>
        !             8: 
        !             9: #include "dom-core.h"
        !            10: 
        !            11: class DOM_impl : virtual public DOM_skel {
        !            12:     Document_ptr createDocument( const char* type ) {
        !            13:         domCreateDocument(type);
        !            14:     }
        !            15: };
        !            16: 
        !            17: class Document_impl : virtual public ::Document {
        !            18: };

Webmaster