generic_factory.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 75 行
H
75 行
// Generic_Factory.h,v 1.6 2002/01/29 20:20:41 okellogg Exp
// ============================================================================
//
// = FILENAME
// Generic_Factory.h
//
// = DESCRIPTION
// A generic factory, customized for the use with the Quoter example.
//
// = AUTHOR
// Michael Kircher (mk1@cs.wustl.edu)
//
// ============================================================================
#include "ace/Get_Opt.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/PortableServer/ORB_Manager.h"
#include "Generic_Factory_i.h"
#ifndef GENERIC_FACTORY_H
#define GENERIC_FACTORY_H
class Quoter_Generic_Factory_Server
{
// = TILE
// Server object for the Quoter Generic Factory
public:
Quoter_Generic_Factory_Server (void);
// Default constructor
~Quoter_Generic_Factory_Server (void);
// Destructor
int init (int argc,
char *argv[]
ACE_ENV_ARG_DECL);
// Initialize the Quoter_Server state - parsing arguments and ...
int run (ACE_ENV_SINGLE_ARG_DECL);
// Run the orb.
u_int parse_args (void);
// Parse the passed parameters.
private:
TAO_ORB_Manager orb_manager_;
// instance of the ORB Manager
Quoter_Generic_Factory_i *quoter_Generic_Factory_i_ptr_;
// Instance of the Quoter Generic Factory.
CosNaming::NamingContext_var quoterNamingContext_var_;
// Reference to the Quoter naming context.
int argc_;
// Number of commandline arguments.
char **argv_;
// commandline arguments.
unsigned char use_LifeCycle_Service_;
// flag for whether or not to use the lifecycle service
int debug_level_;
// debug level (0 = quiet, 1 = default, informative, 2+ = noisy);
};
#endif /* GENERIC_FACTORY_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?