mirror of
https://github.com/openE57/openE57.git
synced 2026-01-18 01:11:18 +01:00
* Updated CRC Header * Corrected recipe, changed test example * Synchronized recipe with upstream one in conan-index-center * Updated Changelog
20 lines
421 B
C++
20 lines
421 B
C++
#include <openE57/openE57.h>
|
|
#include <iostream>
|
|
|
|
using namespace e57;
|
|
using namespace std;
|
|
|
|
int main(int /*argc*/, char** /*argv*/)
|
|
{
|
|
E57Utilities utilities{};
|
|
|
|
int astmMajor{0};
|
|
int astmMinor{0};
|
|
ustring libraryId{};
|
|
utilities.getVersions(astmMajor, astmMinor, libraryId);
|
|
|
|
std::cout << "E57 Version: " << astmMajor << "." << astmMinor << " - Library ID: " << libraryId << std::endl;
|
|
|
|
return 0;
|
|
}
|