pluginparameters.h

来自「基于属性证书的访问控制源代码,由c++编写,包括openssl,xercesc等」· C头文件 代码 · 共 37 行

H
37
字号
#ifndef CPPUNIT_PLUGIN_PARAMETERS#define CPPUNIT_PLUGIN_PARAMETERS#include <cppunit/Portability.h>#if !defined(CPPUNIT_NO_TESTPLUGIN)#include <cppunit/portability/CppUnitDeque.h>#include <string>CPPUNIT_NS_BEGIN/*! \brief Test plug-ins parameters. */class CPPUNIT_API PlugInParameters{public:  /// Constructs plug-in parameters from the specified command-line.  PlugInParameters( const std::string &commandLine = "" );  virtual ~PlugInParameters();  /// Returns the command line that was passed on construction.  std::string getCommandLine() const;private:  std::string m_commandLine;};CPPUNIT_NS_END#endif // !defined(CPPUNIT_NO_TESTPLUGIN)#endif // CPPUNIT_PLUGIN_PARAMETERS

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?