mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
d6abfbdc5a
Now that CObject is fully ref-counted, just use RefPtr everywhere! :^)
17 lines
325 B
C++
17 lines
325 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;
|
|
RefPtr<CLocalServer> m_server;
|
|
ASMixer m_mixer;
|
|
};
|