diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2021-02-15 00:08:02 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2021-02-17 04:02:41 +0100 |
commit | 509814d936461cb7690862eac8d6c88e9f412362 (patch) | |
tree | 4552c1b720aa49d595689b54be92e493df47fade /include | |
parent | 1093c21ed9736368ecfb8f5c7935db31256671f0 (diff) |
Move EPS reader and writer from filter module into VCL
Change-Id: I1646f72d6a1db176e4520f8f64321646a26f054e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111016
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/graphicfilter.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/vcl/graphicfilter.hxx b/include/vcl/graphicfilter.hxx index 17632d2759a4..65ced92ce29f 100644 --- a/include/vcl/graphicfilter.hxx +++ b/include/vcl/graphicfilter.hxx @@ -84,6 +84,7 @@ namespace o3tl #define IMP_MET "SVMET" #define IMP_RAS "SVRAS" #define IMP_PCX "SVPCX" +#define IMP_EPS "SVIEPS" #define EXP_BMP "SVBMP" #define EXP_SVMETAFILE "SVMETAFILE" #define EXP_WMF "SVWMF" @@ -93,6 +94,7 @@ namespace o3tl #define EXP_PDF "SVEPDF" #define EXP_PNG "SVEPNG" #define EXP_TIFF "SVTIFF" +#define EXP_EPS "SVEEPS" #define BMP_SHORTNAME u"BMP" @@ -370,6 +372,7 @@ public: static ErrCode readMET(SvStream & rStream, Graphic & rGraphic, GfxLinkType & rLinkType); static ErrCode readRAS(SvStream & rStream, Graphic & rGraphic); static ErrCode readPCX(SvStream & rStream, Graphic & rGraphic); + static ErrCode readEPS(SvStream & rStream, Graphic & rGraphic); private: OUString aFilterPath; |