2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-07 12:50:52 +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;
}