Sync changes.
This commit is contained in:
parent
b7c17cf1a0
commit
84f85b4200
3 changed files with 14 additions and 22 deletions
23
src/App.h
23
src/App.h
|
@ -47,24 +47,23 @@ class Signals;
|
|||
class App : public IConsoleListener, public ISignalListener
|
||||
{
|
||||
public:
|
||||
App(Process *process);
|
||||
~App() override;
|
||||
App(Process *process);
|
||||
~App() override;
|
||||
|
||||
int exec();
|
||||
int exec();
|
||||
|
||||
protected:
|
||||
void onConsoleCommand(char command) override;
|
||||
void onSignal(int signum) override;
|
||||
void onConsoleCommand(char command) override;
|
||||
void onSignal(int signum) override;
|
||||
|
||||
private:
|
||||
void background();
|
||||
void close();
|
||||
void release();
|
||||
void background();
|
||||
void close();
|
||||
|
||||
Console *m_console;
|
||||
Controller *m_controller;
|
||||
Httpd *m_httpd;
|
||||
Signals *m_signals;
|
||||
Console *m_console;
|
||||
Controller *m_controller;
|
||||
Httpd *m_httpd;
|
||||
Signals *m_signals;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue