diff options
Diffstat (limited to 'Build/source/libs/poppler/poppler-src/fofi/FoFiBase.h')
-rw-r--r-- | Build/source/libs/poppler/poppler-src/fofi/FoFiBase.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/poppler-src/fofi/FoFiBase.h b/Build/source/libs/poppler/poppler-src/fofi/FoFiBase.h index d613acd2bb1..be4e7025336 100644 --- a/Build/source/libs/poppler/poppler-src/fofi/FoFiBase.h +++ b/Build/source/libs/poppler/poppler-src/fofi/FoFiBase.h @@ -6,6 +6,20 @@ // //======================================================================== +//======================================================================== +// +// Modified under the Poppler project - http://poppler.freedesktop.org +// +// All changes made under the Poppler project to this file are licensed +// under GPL version 2 or later +// +// Copyright (C) 2018 Albert Astals Cid <aacid@kde.org> +// +// To see a description of the changes please see the Changelog file that +// came with your tarball or type make ChangeLog if you are building from git +// +//======================================================================== + #ifndef FOFIBASE_H #define FOFIBASE_H @@ -25,6 +39,8 @@ typedef void (*FoFiOutputFunc)(void *stream, const char *data, int len); class FoFiBase { public: + FoFiBase(const FoFiBase &) = delete; + FoFiBase& operator=(const FoFiBase &other) = delete; virtual ~FoFiBase(); |