📄 ptest.h
字号:
// -*- C++ -*-
// Ptest.h,v 1.8 2003/10/28 18:34:28 bala Exp
// ============================================================================
//
// = LIBRARY
// TAO/orbsvcs/tests/InterfaceRepo
//
// = FILENAME
// Ptest.h
//
// = DESCRIPTION
// This code tests the persistence of the IFR by inserting
// IR objects into the repository with one function, and querying the
// repository with another, with a repository shutdown in between.
//
// = AUTHOR
// Jeff Parsons <parsons@cs.wustl.edu>
//
// ============================================================================
#if !defined (PTEST_H)
#define PTEST_H
#include "tao/IFR_Client/IFR_BasicC.h"
class Ptest
{
// = TITLE
// IFR Persistence test Implementation
//
// = DESCRIPTION
// Class wrapper for code which either populates or queries the
// Interface Repository. Designed to be used with a Perl script
// which can start and stop both this process and the repository
// process in the necessary order.
public:
Ptest (void);
// Constructor
~Ptest (void);
// Destructor
int init (int argc,
char *argv[]);
// Initialize the ORB and get the IFR object reference.
int run (void);
// Execute test code.
private:
void populate (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
void query (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
// The two IFR tests.
int parse_args (int argc,
char *argv[]);
// Process the command line arguments.
CORBA::Boolean debug_;
// Flag to output results of IFR queries.
CORBA::Boolean query_;
// Are we populating a new IFR or querying a persistent one?
CORBA::ORB_var orb_;
// Storage of the ORB reference.
CORBA::Repository_var repo_;
// Storage of the IFR reference.
};
#endif /* PTEST_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -