rt_properties.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 53 行
H
53 行
//RT_Properties.h,v 1.5 2002/01/29 20:21:07 okellogg Exp
//
// ============================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// RT_Properties.h
//
// = DESCRIPTION
// Defines a series of "real time" property that an Object
// or a POA created on a RT-ORB can have.
//
// = AUTHOR
// Angelo Corsaro <corsaro@cs.wustl.edu>
//
// ============================================================================
#ifndef RT_PROPERTIES_H_
#define RT_PROPERTIES_H_
#include "tao/RTCORBA/RTCORBA.h"
class RT_Properties
{
public:
// -- Ctor/Dtor --
RT_Properties (void);
~RT_Properties (void);
static RT_Properties * read_from (const char *file_name
ACE_ENV_ARG_DECL);
// -- Accessor Methods --
void priority (RTCORBA::Priority priority);
RTCORBA::Priority priority (void);
void priority_bands (const RTCORBA::PriorityBands& priority_bands);
const RTCORBA::PriorityBands& priority_bands (void);
void ior_source (const char *s);
const char* ior_source (void);
private:
RTCORBA::Priority priority_;
RTCORBA::PriorityBands priority_bands_;
char ior_source_[256];
};
#endif /* RT_PROPERTIES_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?