mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
LibGfx/TIFF: Put the TIFFLoadingContext
class in a TIFF namespace
This commit is contained in:
parent
b78f93d0b5
commit
1d1e7abba7
Notes:
sideshowbarker
2024-07-16 22:54:10 +09:00
Author: https://github.com/LucasChollet
Commit: 1d1e7abba7
Pull-request: https://github.com/SerenityOS/serenity/pull/21918
Reviewed-by: https://github.com/nico ✅
2 changed files with 12 additions and 6 deletions
|
@ -13,7 +13,9 @@ namespace Gfx {
|
|||
|
||||
// https://www.itu.int/itudoc/itu-t/com16/tiff-fx/docs/tiff6.pdf
|
||||
|
||||
namespace TIFF {
|
||||
class TIFFLoadingContext;
|
||||
}
|
||||
|
||||
class TIFFImageDecoderPlugin : public ImageDecoderPlugin {
|
||||
public:
|
||||
|
@ -29,7 +31,7 @@ public:
|
|||
private:
|
||||
TIFFImageDecoderPlugin(NonnullOwnPtr<FixedMemoryStream>);
|
||||
|
||||
OwnPtr<TIFFLoadingContext> m_context;
|
||||
OwnPtr<TIFF::TIFFLoadingContext> m_context;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue