diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-22 21:28:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-22 21:28:13 +0900 |
commit | cd87a41ab9bfa2207b41a6117e6fe9aea2075143 (patch) | |
tree | 21f426dfe48428c677eb245428a87ec06a034213 /reader/src/formats/pdf/PdfDescriptionReader.h | |
parent | 17b259df9cb6b28779d4881b2b6c805ee2e48eea (diff) | |
download | tde-ebook-reader-cd87a41ab9bfa2207b41a6117e6fe9aea2075143.tar.gz tde-ebook-reader-cd87a41ab9bfa2207b41a6117e6fe9aea2075143.zip |
Add tde-ebook-reader package
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'reader/src/formats/pdf/PdfDescriptionReader.h')
-rw-r--r-- | reader/src/formats/pdf/PdfDescriptionReader.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/reader/src/formats/pdf/PdfDescriptionReader.h b/reader/src/formats/pdf/PdfDescriptionReader.h deleted file mode 100644 index 004cdfa..0000000 --- a/reader/src/formats/pdf/PdfDescriptionReader.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (C) 2004-2012 Geometer Plus <contact@geometerplus.com> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - * 02110-1301, USA. - */ - -#ifndef __PDFDESCRIPTIONREADER_H__ -#define __PDFDESCRIPTIONREADER_H__ - -#include <string> - -class Book; - -class PdfDescriptionReader { - -public: - PdfDescriptionReader(Book &book); - ~PdfDescriptionReader(); - bool readMetaInfo(shared_ptr<ZLInputStream> stream); - -private: - Book &myBook; -}; - -inline PdfDescriptionReader::~PdfDescriptionReader() {} - -#endif /* __PDFDESCRIPTIONREADER_H__ */ |