client_i.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 59 行
H
59 行
// -*- C++ -*-
// Client_i.h,v 1.3 1999/08/01 15:42:07 nanbor Exp
// ============================================================================
//
// = LIBRARY
// TAO/examples/OBV/Typed_Events
//
// = FILENAME
// Client_i.h
//
// = DESCRIPTION
// This class is a template for a CORBA client.
// run () sends some valuetypes to a server and
// gets back a list of valuetypes.
//
// = AUTHOR
//
// Torsten Kuepper
// based on the echo example
// from code from Balachandran Natarajan <bala@cs.wustl.edu>
//
// ============================================================================
#ifndef ECHO_CLIENT_I_H
#define ECHO_CLIENT_I_H
#include "../Simple_util.h"
#include "Event_TypesC.h"
CORBA::Float random_number (double min, double max);
class Checkpoint_Client_i
{
// = TITLE
// Checkpoint_Client interface subclass.
//
// = DESCRIPTION
// This class implements the interface between the interface
// objects and the client .
public:
// = Initialization and termination methods.
Checkpoint_Client_i (void);
// Constructor
virtual ~Checkpoint_Client_i (void);
// Destructor
virtual int run (const char *,int, char** );
// Execute the methods
private:
Client<Checkpoint, Checkpoint_var> checkpoint;
// Instantiate the checkpoint object.
};
#endif /* TIME_CLIENT_I_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?