summaryrefslogtreecommitdiff
path: root/cpp/poppler-page-transition.cpp
AgeCommit message (Collapse)AuthorFilesLines
2020-07-03Run clang-formatAlbert Astals Cid1-14/+4
find . \( -name "*.cpp" -or -name "*.h" -or -name "*.c" -or -name "*.cc" \) -exec clang-format -i {} \; If you reached this file doing a git blame, please see README.contributors (instructions added 2 commits in the future to this one)
2019-02-10cpp: docs: Add header file informationMasamichi Hosoda1-0/+3
This commit adds header files for the document. It generates header file information including dependency graphs and so on.
2018-10-31cpp/poppler-page-transition.cpp typoluzpaz1-1/+1
2011-04-27Fix page_transition::operator=Albert Astals Cid1-1/+2
2010-09-22update copyrightsPino Toscano1-1/+1
2010-09-17[cpp] More bits of API documentation.Pino Toscano1-0/+32
2009-12-13Start of a pure C++ frontend for Poppler.Pino Toscano1-0/+95
This initial version (called 'poppler-cpp') includes preliminary support for: - document (loading from file name, some query methods, unlocking, font listing, embedded files) - page (some query methods) with page transitions - TOC Modelled a bit on the Qt4 API, it provides also an own "ustring" typedef representing UTF-16 strings, with methods to convert back/to UTF-8 and Latin 1. Most probably it has bugs, but nevertheless worth testing and developing.