// Dash Interface // // Douglas Thrift // // $Id$ #include #include #include #include #include #include int main(int argc, char *argv[]) { try { enum { Uname, Music, English, Metric, Nautical, Last } mode; Audacious audacious; GPS::GPS gps; { gps.Query(_B("o")); std::cout << gps.GetLatitude() << std::endl; } } catch (const std::exception &exception) { std::cerr << argv[0] << _B(": ") << exception.what() << std::endl; return 1; } return 0; }