Blame view

qt/logger.h 521 Bytes
ac7ba427e   김태훈   Qt용 UnixDomainDat...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  // Logger는 pool sw의 app-logger를 사용할 수 있게 해준다.
  
  #ifndef LOGGER_H
  #define LOGGER_H
  
  #include <QObject>
  
  #include "unixdomaindatagramsocket.h"
  
  class Logger : public QObject
  {
      Q_OBJECT
  public:
      explicit Logger(QObject *parent = nullptr);
  
      bool init(const QString &tag);
  
  signals:
  
  public slots:
      void print(const QString &string);
      void hexdump(const QString &message, const QByteArray &bytes);
  
  private:
      UnixDomainDatagramSocket *socket;
      QString tag;
  };
  
  #endif // LOGGER_H