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

json.h.cmakein 826 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * $Id: json.h,v 1.6 2006/01/26 02:16:28 mclark Exp $
  3. *
  4. * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
  5. * Michael Clark <michael@metaparadigm.com>
  6. * Copyright (c) 2009 Hewlett-Packard Development Company, L.P.
  7. *
  8. * This library is free software; you can redistribute it and/or modify
  9. * it under the terms of the MIT license. See COPYING for details.
  10. *
  11. */
  12. /**
  13. * @file
  14. * @brief A convenience header that may be included instead of other individual ones.
  15. */
  16. #ifndef _json_h_
  17. #define _json_h_
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. #include "arraylist.h"
  22. #include "debug.h"
  23. #include "json_c_version.h"
  24. #include "json_object.h"
  25. #include "json_object_iterator.h"
  26. @JSON_H_JSON_PATCH@
  27. @JSON_H_JSON_POINTER@
  28. #include "json_tokener.h"
  29. #include "json_util.h"
  30. #include "linkhash.h"
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif