You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
260 B
C++
16 lines
260 B
C++
5 years ago
|
#include <QCoreApplication>
|
||
|
#include <exiv2/exiv2.hpp>
|
||
|
#include <iostream>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
QCoreApplication a(argc, argv);
|
||
|
|
||
|
exv_grep_keys_t keys;
|
||
|
Exiv2::dumpLibraryInfo(std::cout,keys);
|
||
|
|
||
|
return 0;
|
||
|
// return a.exec();
|
||
|
}
|
||
|
|