//Editor-Info: -*- C++ -*-
//
//Subject: TOVE project / debug/event
//
//File: pushconsumer_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_PUSHCONSUMER_IMPL_H__
#define __DEBUG_PUSHCONSUMER_IMPL_H__

#include <OB/CosEventComm_skel.h>

class PushConsumer_impl : public CosEventComm_PushConsumer_skel
{
    CosEventComm_PushSupplier_var supplier_;

public:

    PushConsumer_impl(CosEventComm_PushSupplier*);
    virtual ~PushConsumer_impl(void);

    void disconnect_push_consumer(void);

    void push(const CORBA_Any&);
};

#endif // __DEBUG_PUSHCONSUMER_IMPL_H__
