mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
39 lines
648 B
C++
39 lines
648 B
C++
#pragma once
|
|
|
|
#include <QThread>
|
|
|
|
class Application;
|
|
class Paths;
|
|
|
|
namespace chatterino {
|
|
|
|
void registerNmHost(Application &app);
|
|
std::string &getNmQueueName(Paths &paths);
|
|
|
|
class NativeMessagingClient final
|
|
{
|
|
public:
|
|
void sendMessage(const QByteArray &array);
|
|
void writeToCout(const QByteArray &array);
|
|
};
|
|
|
|
class NativeMessagingServer final
|
|
{
|
|
public:
|
|
void start();
|
|
|
|
private:
|
|
class ReceiverThread : public QThread
|
|
{
|
|
public:
|
|
void run() override;
|
|
|
|
private:
|
|
void handleMessage(const QJsonObject &root);
|
|
};
|
|
|
|
ReceiverThread thread;
|
|
};
|
|
|
|
} // namespace chatterino
|