#ifndef __NNGDEBUGER_H__ #define __NNGDEBUGER_H__ #include #include #include class GPeInput; class NngDebuger { public: NngDebuger(); ~NngDebuger(); void setPeInput(GPeInput *peInput); protected: void run(); void process(const std::string &message); private: std::shared_ptr m_thread; bool m_exit = true; GPeInput *m_peInput = nullptr; }; #endif // __NNGDEBUGER_H__