2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-29 05:29:06 +00:00
qpdf/pkg-test/qpdf-version.cc

8 lines
125 B
C++
Raw Normal View History

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