mirror of
https://github.com/UltraCoderRU/court_monitor.git
synced 2026-01-28 02:15:12 +00:00
13 lines
287 B
C++
13 lines
287 B
C++
#include "Dialog.h"
|
|
|
|
#include "Logger.h"
|
|
|
|
Dialog::Dialog(banana::integer_t userId, const char* name) : userId_(userId), name_(name)
|
|
{
|
|
LOG(dialog, "{} dialog created for user {}", name_, userId_);
|
|
}
|
|
|
|
Dialog::~Dialog()
|
|
{
|
|
LOG(dialog, "{} dialog for user {} destroyed", name_, userId_);
|
|
}
|