/
jiteman
/
jsd-foreign-libreoffice-cppunit
Обзор
Документация
Войти
/
jiteman
/
jsd-foreign-libreoffice-cppunit
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/cppunit/ProtectorContext.h
44 строки
899 B
jiteman
initial commit has been done
14 апр 2024, 15:49
14 апр 2024, 15:49
4c53812
Код
Авторство
О чём код?
#ifndef CPPUNIT_PROTECTORCONTEXT_H #define CPPUNIT_PROTECTORCONTEXT_H #include <cppunit/Portability.h> #include <string> CPPUNIT_NS_BEGIN class Test; class TestResult; /*! \brief Protector context (Implementation). * Implementation detail. * \internal Context use to report failure in Protector. */ class CPPUNIT_API ProtectorContext { public: ProtectorContext( Test *test, TestResult *result, const std::string &shortDescription ) : m_test( test ) , m_result( result ) , m_shortDescription( shortDescription ) { } private: /// disable copy construction ProtectorContext( const ProtectorContext& ); /// disable assignment ProtectorContext& operator=(const ProtectorContext&); public: Test *m_test; TestResult *m_result; std::string m_shortDescription; }; CPPUNIT_NS_END #endif // CPPUNIT_PROTECTORCONTEXT_H