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:
parent
b78f93d0b5
commit
1d1e7abba7
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