| 23 | static std::string kClientEmbedName = "ui.embed"; |
| 24 | |
| 25 | ClientContext::ClientContext(const std::string& name, QObject* parent) : QObject(parent) { |
| 26 | this->name_ = name; |
| 27 | this->msg_notifier_ = std::make_shared<MessageNotifier>(); |
| 28 | } |
| 29 | |
| 30 | ClientContext::~ClientContext() { |
| 31 | Exit(); |
nothing calls this directly
no outgoing calls
no test coverage detected