This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example C++17 gpsd program using libgpsmm | |
// Has no actual purpose other than output some of libgpsmm struct variables of your choosing. | |
// reference declarations: https://fossies.org/dox/gpsd-3.22/index.html | |
// | |
// compiles without warning as follows: | |
// g++ -std=c++17 -Wall -pedantic -pthread $(pkg-config --cflags --libs libgps) gpsd-example.cpp -o gpsd-example | |
// clang++ -std=c++17 -Wall -pedantic -pthread $(pkg-config --cflags --libs libgps) gpsd-example.cpp -o gpsd-example | |
// Free for the taking. | |
// Version 1.84 |