mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:12:45 +00:00 
			
		
		
		
	LibAudio: Put all classes in the Audio namespace and remove leading A
This commit is contained in:
		
							parent
							
								
									0bce5f7403
								
							
						
					
					
						commit
						92f77864de
					
				
					 20 changed files with 127 additions and 103 deletions
				
			
		|  | @ -28,17 +28,19 @@ | |||
| 
 | ||||
| #include <LibGUI/GFrame.h> | ||||
| 
 | ||||
| class ABuffer; | ||||
| namespace Audio { | ||||
| class Buffer; | ||||
| } | ||||
| 
 | ||||
| class SampleWidget final : public GUI::Frame { | ||||
|     C_OBJECT(SampleWidget) | ||||
| public: | ||||
|     virtual ~SampleWidget() override; | ||||
| 
 | ||||
|     void set_buffer(ABuffer*); | ||||
|     void set_buffer(Audio::Buffer*); | ||||
| private: | ||||
|     explicit SampleWidget(GUI::Widget* parent); | ||||
|     virtual void paint_event(GUI::PaintEvent&) override; | ||||
| 
 | ||||
|     RefPtr<ABuffer> m_buffer; | ||||
|     RefPtr<Audio::Buffer> m_buffer; | ||||
| }; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling