mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 11:22:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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;
 | |
| };
 | 
