typeinfohelper.h
来自「基于属性证书的访问控制源代码,由c++编写,包括openssl,xercesc等」· C头文件 代码 · 共 34 行
H
34 行
#ifndef CPPUNIT_TYPEINFOHELPER_H#define CPPUNIT_TYPEINFOHELPER_H#include <cppunit/Portability.h>#if CPPUNIT_HAVE_RTTI#include <typeinfo>CPPUNIT_NS_BEGIN /**! \brief Helper to use type_info. */ class CPPUNIT_API TypeInfoHelper { public: /*! \brief Get the class name of the specified type_info. * \param info Info which the class name is extracted from. * \return The string returned by type_info::name() without * the "class" prefix. If the name is not prefixed * by "class", it is returned as this. */ static std::string getClassName( const std::type_info &info ); };CPPUNIT_NS_END#endif // CPPUNIT_HAVE_RTTI#endif // CPPUNIT_TYPEINFOHELPER_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?