这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用于网络游戏医学图像网关的高qos要求.更详细的内容可阅读相应的材料

源代码在线查看: control.h

软件大小: 29384 K
上传用户: captainjn
关键词: qos 通信 开源 大容量
下载地址: 免注册下载 普通下载 VIP

相关代码

				// Control.h,v 1.5 2000/11/11 17:39:56 bala Exp
				
				// ============================================================================
				//
				// = LIBRARY
				//   TAO/tests/Xt_Stopwatch/Stopwatch_client
				//
				// = FILENAME
				//   Control.h
				//
				// = AUTHOR
				//   Balachandran  Natarajan 
				//
				// ============================================================================
				
				#ifndef CONTROL_H
				#define CONTROL_H
				#include "Client.h"
				
				#if defined (ACE_HAS_XT)
				
				#include 
				#include 
				#include 
				#include 
				#include 
				
				
				class Control
				{
				 public:
				  Control (Widget &parent);
				  // Stopwatch constructor
				
				  virtual ~Control (void);
				  // Destructor
				
				  virtual void manage (void);
				  // Manage the widget
				
				  Widget& startwidget (void);
				  // Return the start widget
				
				  Widget& stopwidget (void);
				  // Return the stop widget..
				
				 private:
				
				  Widget frame_;
				  // A frame widget...
				
				  Widget rowcolumn_;
				  // A row column widget..
				
				  Widget startwidget_;
				  // Pushbutton  Widget that is used to start the  timer..
				
				  Widget stopwidget_;
				  // Pushbutton widget that is used to stop the timer..
				
				};
				
				#endif /*ACE_HAS_XT */
				
				#endif /* CONTROL_H */
							

相关资源