/******************************************************************************
 *
 * Name : TemplateImpl
 *
 * Task : Template for use of CORBA
 *
 * Created : 28. April 1999
 *
 * Last change : 28. April 1999
 *
 * Version : 1.0
 *
 * Author : Michael Ebner
 *
 * Comments :
 *
 *
 *
 *
 *****************************************************************************/


package Praktikum; // your module name

import org.omg.CORBA.*; //


public class TemplateImpl extends _TemplateImplBase {
    

    // ************************************************************************
    // class variables
    // ************************************************************************

    private static ORB orb=null;                      // Object Request Broker
    private static BOA boa=null;                      // Basic Oject Adapter
    
//    private static NamingService ns;
w 
    // ************************************************************************
    // constructor methods
    // ************************************************************************
    
    public static void main( String[] args ) {
        TemplateImpl template = new TemplateImpl(args);
        
    }

    public TemplateImpl(String[] args) {

        //
        // Create ORB and BOA
        //

        try {
            orb = ORB.init(argsOrb, new java.util.Properties());
            boa = orb.BOA_init(argsOrb, new java.util.Properties());
        } catch(SystemException ex) {
            // ORB not created
            System.exit(1);
        }


        // insert your own code below


    }

    public TemplateImpl() {
    }


}




