pos_def.h 185 B

12345678910111213141516
  1. #ifndef POS_DEF_H
  2. #define POS_DEF_H
  3. #include <string>
  4. namespace iv {
  5. struct pos_def
  6. {
  7. double mflon;
  8. double mflat;
  9. std::string mstrstationname;
  10. };
  11. }
  12. #endif // POS_DEF_H