You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
560 B

1 year ago
  1. #pragma once
  2. #include <fstream>
  3. #include <functional>
  4. #include <iostream>
  5. #include <list>
  6. #include <map>
  7. #include <memory>
  8. #include <mutex>
  9. #include <set>
  10. #include <sstream>
  11. #include <string>
  12. #include <vector>
  13. //
  14. #include "i_xsync_udp.hpp"
  15. #include "ixsync.hpp"
  16. #include "xsync_errcode.hpp"
  17. #include "xsync_packet.hpp"
  18. #include "xsync_regs.hpp"
  19. #include "xsync_utils.hpp"
  20. #include "xsync_v2_sig_type.hpp"
  21. namespace xsync {
  22. using namespace std;
  23. void XsyncInit(I_XSUDPFactory *xsync_udp_factory, string xsyncIp);
  24. IXsync *XsyncIns();
  25. } // namespace xsync