tdoa_sync.cpp 265 B

12345678910111213141516171819202122232425
  1. #include "tdoa_sync.h"
  2. struct tdoa_sync_impl:tdoa_sync
  3. {
  4. virtual void on_message(message_tdoasync&msg)
  5. {
  6. }
  7. virtual void translate(message_locinfo&tdoa_msg)
  8. {
  9. }
  10. };
  11. tdoa_sync*tdoa_sync::instance()
  12. {
  13. static tdoa_sync_impl _impl;
  14. return &_impl;
  15. }