You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
746 B
26 lines
746 B
// This file is under GNU General Public License 3.0
|
|
// see LICENSE.txt
|
|
|
|
#ifndef LIBPEPADAPTER_PEPTESTMODEL_HH
|
|
#define LIBPEPADAPTER_PEPTESTMODEL_HH
|
|
|
|
#include "../../../src/pEpLog.hh"
|
|
|
|
namespace pEp {
|
|
namespace PityTest11 {
|
|
class PityModel {
|
|
public:
|
|
PityModel() = delete;
|
|
PityModel(const std::string& name);
|
|
virtual const std::string& getName() const;
|
|
|
|
private:
|
|
const std::string name;
|
|
static bool log_enabled;
|
|
Adapter::pEpLog::pEpLogger logger{ "pEpTestModel", log_enabled };
|
|
Adapter::pEpLog::pEpLogger& m4gic_logger_n4me = logger;
|
|
};
|
|
}; // namespace Test
|
|
}; // namespace pEp
|
|
|
|
#endif // LIBPEPADAPTER_PEPTESTMODEL_HH
|
|
|