//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project
//
//File: trs_impl.h
//
//Version: $Revision: 1.2 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/10/06 13:23:33 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Harri Sunila
//
//Description:
//      Description of the implementation of RouteServerCallback interface
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History: 

#ifndef __TRS_TRS_IMPL_H__
#define __TRS_TRS_IMPL_H__

class ccProtocol;

#include <OB/CORBA.h>
#include "trs_skel.h"

class trs_RouteServerCallback_impl : public trs_RouteServerCallback_skel
{
    public:
        trs_RouteServerCallback_impl(ccProtocol *host_);
        ~trs_RouteServerCallback_impl(void);
        virtual void routeSelection(const trs_LinkNumberList &nextLinks_,
                                    const trs_DTLstackList &dtlStacks_,
                                    trs_Cause failure_);

    private:
        ccProtocol *_host;
};

#endif // __TRS_TRS_IMPL_H__
