📄 client_task.h
字号:
//
// Client_Task.h,v 1.1 2003/08/07 00:07:42 arvindk Exp
//
#ifndef COLLOCATED_TEST_CLIENT_TASK_H
#define COLLOCATED_TEST_CLIENT_TASK_H
#include /**/ "ace/pre.h"
#include "ace/Task.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/ORB.h"
/// Implement a Task to run the client as a thread
class Client_Task : public ACE_Task_Base
{
public:
/// Constructor
Client_Task (const char *input,
int iterations,
CORBA::ORB_ptr corb,
ACE_Thread_Manager *thr_mgr);
/// Thread entry point
int svc (void);
private:
const char *input_;
const int niterations;
CORBA::ORB_var corb_;
};
#include /**/ "ace/post.h"
#endif /* COLLOCATED_TEST_CLIENT_TASK_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -