Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include <string>
  4.  
  5. // Include the appropriate platform specific file below. If you are
  6. // porting to a new platform, see "port_example.h" for documentation
  7. // of what the new port_<platform>.h file must provide.
  8. #if defined(ROCKSDB_PLATFORM_POSIX)
  9. #include "port/port_posix.h"
  10. #elif defined(OS_WIN)
  11. #include "port/win/port_win.h"
  12. #elif defined(ROCKSDB_PLATFORM_SEASTAR)
  13. #include "port/seastar/port_seastar.h"
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement