2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-02 02:10:52 +00:00
qpdf/pkg-test/qpdf-version.cc
Jay Berkenbilt 38cd94bec8 Strengthen pkg-test
* Define POINTERHOLDER_TRANSITION
* Make sure we are getting the intended version of qpdf
2022-09-10 09:44:29 -04:00

14 lines
202 B
C++

#ifndef POINTERHOLDER_TRANSITION
# define POINTERHOLDER_TRANSITION 4
#endif
#include <qpdf/QPDF.hh>
#include <iostream>
int
main()
{
std::cout << QPDF::QPDFVersion() << std::endl;
return 0;
}