Advertisement
happycactus

main.cpp

Jun 20th, 2019
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. #include <gdal_priv.h>
  3.  
  4. int main()
  5. {
  6.     auto d = GetGDALDriverManager();
  7.     std::cout << "There are " << d->GetDriverCount() << " registered drivers" << std::endl;
  8.     return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement