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
commit 1d1e7abba7
Notes: sideshowbarker 2024-07-16 22:54:10 +09:00
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;
};
}