diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2021-02-15 10:47:14 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2021-02-17 05:55:07 +0100 |
commit | 27078ce8cb03f6ba61be5ce75c5231bc8798d6fe (patch) | |
tree | b4ef200aef196b2f773ffaa744658326a39569f2 /include/vcl | |
parent | 68012eaaab9968f6ccfdfc018bcc5befa36a7a2f (diff) |
Move PBM,PPM reader from filter module into VCL
Change-Id: I1ce998575f8d204045fabea184e80e71308a16b8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111019
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/graphicfilter.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/graphicfilter.hxx b/include/vcl/graphicfilter.hxx index 992aac639729..f0d0511aac97 100644 --- a/include/vcl/graphicfilter.hxx +++ b/include/vcl/graphicfilter.hxx @@ -87,6 +87,7 @@ namespace o3tl #define IMP_EPS "SVIEPS" #define IMP_PSD "SVPSD" #define IMP_PCD "SVPCD" +#define IMP_PBM "SVPBM" #define EXP_BMP "SVBMP" #define EXP_SVMETAFILE "SVMETAFILE" #define EXP_WMF "SVWMF" @@ -377,6 +378,7 @@ public: static ErrCode readEPS(SvStream & rStream, Graphic & rGraphic); static ErrCode readPSD(SvStream & rStream, Graphic & rGraphic); static ErrCode readPCD(SvStream & rStream, Graphic & rGraphic); + static ErrCode readPBM(SvStream & rStream, Graphic & rGraphic); private: OUString aFilterPath; |