📄 callback.h
字号:
/**
* @file Callback.h
*
* Callback.h,v 1.2 2002/03/19 17:49:12 ossama Exp
*
*/
#ifndef CALLBACK_H
#define CALLBACK_H
#include "TestS.h"
#include "ace/Sample_History.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/**
* @class Callback
*
* @brief Implicit the Test::Callback interface
*
*/
class Callback
: public virtual POA_Test::Callback
, public virtual PortableServer::RefCountServantBase
{
public:
/// Constructor
Callback (int iterations,
PortableServer::POA_ptr poa);
/// Access the history of samples
ACE_Sample_History &sample_history (void);
//@{
/** @name The RtecEventComm::PushCallback methods
*/
virtual void sample (Test::Timestamp the_timestamp
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
PortableServer::POA_ptr _default_POA (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException));
//@}
private:
/// Synchronize access to the internal data
TAO_SYNCH_MUTEX mutex_;
/// The history of latency samples
ACE_Sample_History sample_history_;
/// The default poa
PortableServer::POA_var poa_;
};
#endif /* CALLBACK_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -