1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:17:44 +00:00

LibGfx/TIFF: Put the TIFFLoadingContext class in a TIFF namespace

This commit is contained in:
Lucas CHOLLET 2023-11-12 18:19:19 -05:00 committed by Sam Atkins
parent b78f93d0b5
commit 1d1e7abba7
2 changed files with 12 additions and 6 deletions

View file

@ -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;
};
}