time_date_client_i.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 54 行
H
54 行
// -*- C++ -*-
// Time_Date_Client_i.h,v 1.5 2004/01/02 09:00:16 ossama Exp
// ============================================================================
//
// = LIBRARY
// TAO/examples/Simple/time-date
//
// = FILENAME
// Time_Date_Client_i.h
//
// = DESCRIPTION
// This class implements the interface calls for RMI.
//
// = AUTHOR
// Douglas C. Schmidt <schmidt@cs.wustl.edu>
//
// ============================================================================
#ifndef TIME_DATE_CLIENT_I_H
#define TIME_DATE_CLIENT_I_H
#include "../Simple_util.h"
#include "Time_DateC.h"
class Time_Date_Client_i
{
// = TITLE
// Time_Date_Client interface adapter.
//
// = DESCRIPTION
// This class implements the interface between the interface
// objects and the client.
public:
// = Initialization and termination methods.
Time_Date_Client_i (void);
// Constructor
virtual ~Time_Date_Client_i (void);
// Destructor
virtual int run (const char *, int, char *[]);
// Execute the methods.
virtual int parse_args (int argc, char *argv[]);
// Parses the command line arguments.
private:
Client<Time_Date, Time_Date_var> client_;
// Instantiate the client object.
};
#endif /* TIME_CLIENT_I_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?