json_binder.hpp 727 B

1234567891011121314151617181920212223242526
  1. //
  2. // json_binder.h
  3. // json
  4. //
  5. // Created by Sam Jaffe on 1/31/16.
  6. // Copyright © 2016 Sam Jaffe. All rights reserved.
  7. //
  8. #ifndef json_binder_h
  9. #define json_binder_h
  10. #pragma once
  11. #include "binder/json_binder.hpp"
  12. #include "binder/json_binder_parser.hpp"
  13. #include "binder/json_binder_visitor.hpp"
  14. #include "binder/json_direct_binder.hpp"
  15. #include "binder/json_direct_get_binder.hpp"
  16. #include "binder/json_direct_map_binder.hpp"
  17. #include "binder/json_direct_scalar_binder.hpp"
  18. #include "binder/json_direct_vector_binder.hpp"
  19. #include "binder/json_object_binder.hpp"
  20. #include "binder/json_pointer_binder.hpp"
  21. #include "binder/json_polymorphic_binder.hpp"
  22. #include "binder/json_tuple_binder.hpp"
  23. #endif /* json_binder_h */