mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 22:27:35 +00:00
LibVideo: Add a forwarding header
And change some non-plain structs to classes for consistency.
This commit is contained in:
parent
918ed5c920
commit
7132047c92
4 changed files with 24 additions and 5 deletions
19
Userland/Libraries/LibVideo/Forward.h
Normal file
19
Userland/Libraries/LibVideo/Forward.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Video {
|
||||
|
||||
class DecoderError;
|
||||
class FrameQueueItem;
|
||||
class PlaybackManager;
|
||||
class Sample;
|
||||
class Track;
|
||||
class VideoDecoder;
|
||||
class VideoFrame;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue