//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / debug/event
//
//File: pushsuplier_impl.h
//
//Version: $Revision: 1.1 $
//
//State: $State: Exp $
//
//Date: $Date: 1998/07/10 11:45:32 $
//
//Organisation:
//      Helsinki University of Technology
//      Laboratory of Telecommunications Software and Multimedia
//
//Author:
//      Timo Kokkonen
//
//Description:
//      
//
//Copyright:
//      Copyright 1999 Helsinki University of Technology
//      ALL RIGHTS RESERVED BETWEEN JANUARY 1996 AND JUNE 1999.
//
//Licence:
//
//
//History:
//
#ifndef __DEBUG_PUSHSUPPLIER_IMPL_H__
#define __DEBUG_PUSHSUPPLIER_IMPL_H__

#include <typeinfo>
#include <string>

#include <OB/CosEventComm_skel.h>

class PushSupplier_impl : public CosEventComm_PushSupplier_skel
{
    CosEventComm_PushConsumer_var consumer_;

public:

    PushSupplier_impl(CosEventComm_PushConsumer *consumer);
    virtual ~PushSupplier_impl(void);

    void disconnect_push_supplier(void);

    void send(const string &info_);
};

#endif // __DEBUG_PUSHSUPPLIER_IMPL_H__

