📄 cec_typedevent.h
字号:
// CEC_TypedEvent.h,v 1.5 2003/11/21 03:03:42 bala Exp
/* -*- C++ -*- */
//=============================================================================
/**
* @file CEC_TypedEvent.h
*
* @author Jon Astle (jon@astle45.fsnet.co.uk)
*/
//=============================================================================
#ifndef TAO_CEC_TYPEDEVENT_H_
#define TAO_CEC_TYPEDEVENT_H_
#include /**/ "ace/pre.h"
#include "event_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/NVList.h"
#include "tao/CORBA_String.h"
#include "tao/CORBA_methods.h"
// ****************************************************************
/**
* @class TAO_CEC_TypedEvent
*
* @brief Defines the operation and args list for the TypedEvent
*
* Used to store the TypedEvent as it is passed from the supplier
* side to the consumer side, in the TypedEventChannel.
*/
class TAO_CEC_ProxyPushSupplier;
class TAO_Event_Export TAO_CEC_TypedEvent
{
public:
/// constructors...
TAO_CEC_TypedEvent (void);
TAO_CEC_TypedEvent (CORBA::NVList_ptr list,
const char * operation);
TAO_CEC_TypedEvent & operator= (const TAO_CEC_TypedEvent &);
private:
/// Only the ProxyPushSupplier can read the private fields.
friend class TAO_CEC_ProxyPushSupplier;
CORBA::NVList_ptr list_;
CORBA::String_var operation_;
};
#if defined (__ACE_INLINE__)
#include "CEC_TypedEvent.i"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* TAO_CEC_TYPEDEVENT_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -