Commit 7f043fe88ed8d7ce14a67cbfaf0c0b18015b8f9f
1 parent
a6d7b79e
Remove unused include directives
Showing
56 changed files
with
0 additions
and
83 deletions
examples/pdf-count-strings.cc
| ... | ... | @@ -6,13 +6,11 @@ |
| 6 | 6 | |
| 7 | 7 | #include <iostream> |
| 8 | 8 | #include <stdlib.h> |
| 9 | -#include <string.h> | |
| 10 | 9 | |
| 11 | 10 | #include <qpdf/Pl_StdioFile.hh> |
| 12 | 11 | #include <qpdf/QPDF.hh> |
| 13 | 12 | #include <qpdf/QPDFObjectHandle.hh> |
| 14 | 13 | #include <qpdf/QPDFPageDocumentHelper.hh> |
| 15 | -#include <qpdf/QPDFPageObjectHelper.hh> | |
| 16 | 14 | #include <qpdf/QUtil.hh> |
| 17 | 15 | |
| 18 | 16 | static char const* whoami = nullptr; | ... | ... |
examples/pdf-create.cc
| ... | ... | @@ -12,13 +12,11 @@ |
| 12 | 12 | #include <qpdf/QPDF.hh> |
| 13 | 13 | #include <qpdf/QPDFObjectHandle.hh> |
| 14 | 14 | #include <qpdf/QPDFPageDocumentHelper.hh> |
| 15 | -#include <qpdf/QPDFPageObjectHelper.hh> | |
| 16 | 15 | #include <qpdf/QPDFWriter.hh> |
| 17 | 16 | #include <qpdf/QUtil.hh> |
| 18 | 17 | #include <iostream> |
| 19 | 18 | #include <memory> |
| 20 | 19 | #include <stdlib.h> |
| 21 | -#include <string.h> | |
| 22 | 20 | |
| 23 | 21 | static char const* whoami = nullptr; |
| 24 | 22 | ... | ... |
examples/pdf-filter-tokens.cc
| ... | ... | @@ -9,12 +9,10 @@ |
| 9 | 9 | #include <deque> |
| 10 | 10 | #include <iostream> |
| 11 | 11 | #include <stdlib.h> |
| 12 | -#include <string.h> | |
| 13 | 12 | |
| 14 | 13 | #include <qpdf/QPDF.hh> |
| 15 | 14 | #include <qpdf/QPDFObjectHandle.hh> |
| 16 | 15 | #include <qpdf/QPDFPageDocumentHelper.hh> |
| 17 | -#include <qpdf/QPDFPageObjectHelper.hh> | |
| 18 | 16 | #include <qpdf/QPDFWriter.hh> |
| 19 | 17 | #include <qpdf/QUtil.hh> |
| 20 | 18 | ... | ... |
examples/pdf-name-number-tree.cc
examples/pdf-overlay-page.cc
examples/pdf-parse-content.cc
examples/pdf-set-form-values.cc
examples/qpdf-job.cc
examples/qpdfjob-c-save-attachment.c
examples/qpdfjob-remove-annotations.cc
libqpdf/BufferInputSource.cc
libqpdf/MD5.cc
libqpdf/Pipeline.cc
libqpdf/Pl_AES_PDF.cc
libqpdf/Pl_ASCIIHexDecoder.cc
libqpdf/Pl_Base64.cc
libqpdf/Pl_DCT.cc
libqpdf/Pl_Function.cc
libqpdf/Pl_OStream.cc
libqpdf/Pl_QPDFTokenizer.cc
libqpdf/Pl_SHA2.cc
libqpdf/Pl_String.cc
libqpdf/QPDFAnnotationObjectHelper.cc
libqpdf/QPDFExc.cc
libqpdf/QPDFParser.cc
libqpdf/QPDFSystemError.cc
libqpdf/QPDFXRefEntry.cc
libqpdf/QPDF_Name.cc
libqpdf/QPDF_String.cc
libqpdf/QPDF_linearization.cc
libqpdf/QUtil.cc
libqpdf/RC4.cc
libqpdf/qpdf-c.cc
libqpdf/qpdfjob-c.cc
| 1 | 1 | #include <qpdf/qpdfjob-c.h> |
| 2 | 2 | |
| 3 | 3 | #include <qpdf/QPDFJob.hh> |
| 4 | -#include <qpdf/QPDFLogger.hh> | |
| 5 | 4 | #include <qpdf/QPDFUsage.hh> |
| 6 | 5 | #include <qpdf/QUtil.hh> |
| 7 | 6 | #include <qpdf/qpdf-c_impl.hh> |
| 8 | 7 | #include <qpdf/qpdflogger-c_impl.hh> |
| 9 | 8 | |
| 10 | 9 | #include <cstdio> |
| 11 | -#include <cstring> | |
| 12 | 10 | |
| 13 | 11 | struct _qpdfjob_handle |
| 14 | 12 | { | ... | ... |
libqpdf/qpdflogger-c.cc
libtests/arg_parser.cc
libtests/bits.cc
libtests/closed_file_input_source.cc
libtests/cxx11.cc
libtests/dct_uncompress.cc
libtests/flate.cc
libtests/json_parse.cc
libtests/logger_c.c
libtests/pointer_holder.cc
libtests/predictors.cc
libtests/qutil.cc
| ... | ... | @@ -3,15 +3,11 @@ |
| 3 | 3 | #include <qpdf/Pl_Buffer.hh> |
| 4 | 4 | #include <qpdf/QPDFSystemError.hh> |
| 5 | 5 | #include <qpdf/QUtil.hh> |
| 6 | -#include <fcntl.h> | |
| 7 | 6 | #include <fstream> |
| 8 | 7 | #include <iostream> |
| 9 | 8 | #include <limits.h> |
| 10 | -#include <locale> | |
| 11 | 9 | #include <stdio.h> |
| 12 | 10 | #include <string.h> |
| 13 | -#include <sys/stat.h> | |
| 14 | -#include <sys/types.h> | |
| 15 | 11 | |
| 16 | 12 | #ifdef _WIN32 |
| 17 | 13 | # include <io.h> | ... | ... |
libtests/random.cc
libtests/sha2.cc
qpdf/pdf_from_scratch.cc
qpdf/qpdf.cc
qpdf/qpdfjob-ctest.c
qpdf/test_driver.cc
qpdf/test_renumber.cc
| 1 | -#include <qpdf/Buffer.hh> | |
| 2 | 1 | #include <qpdf/Constants.h> |
| 3 | 2 | #include <qpdf/QPDF.hh> |
| 4 | 3 | #include <qpdf/QPDFObjGen.hh> |
| ... | ... | @@ -6,7 +5,6 @@ |
| 6 | 5 | #include <qpdf/QPDFWriter.hh> |
| 7 | 6 | #include <qpdf/QPDFXRefEntry.hh> |
| 8 | 7 | |
| 9 | -#include <algorithm> | |
| 10 | 8 | #include <cstdlib> |
| 11 | 9 | #include <iostream> |
| 12 | 10 | #include <set> | ... | ... |
qpdf/test_shell_glob.cc
qpdf/test_tokenizer.cc