1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 12:35:07 +00:00
serenity/Servers/AudioServer/ASEventLoop.h
2019-09-21 15:25:08 +02:00

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;
};