#include #include "xvneng.h" using namespace std; int main ( int argc, char* argv[] ) { string info = string ( version () ); try { load(false); } catch (const std::exception& e ) { cout << e.what() << endl; } if ( info.length () ) { cout << info.c_str () << endl; } else { cout << "N/A" << endl; } (void) getchar (); return EXIT_SUCCESS; }