mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 12:35:07 +00:00
17 lines
328 B
C++
17 lines
328 B
C++
#pragma once
|
|
|
|
#include "ASMixer.h"
|
|
#include <LibCore/CEventLoop.h>
|
|
#include <LibCore/CLocalServer.h>
|
|
#include <LibCore/CNotifier.h>
|
|
|
|
class ASEventLoop {
|
|
public:
|
|
ASEventLoop();
|
|
int exec() { return m_event_loop.exec(); }
|
|
|
|
private:
|
|
CEventLoop m_event_loop;
|
|
ObjectPtr<CLocalServer> m_server;
|
|
ASMixer m_mixer;
|
|
};
|