1fc556536e
Update json/json.h to account for our lack of autolink.h. Update json/config.h to include KWSys Large File Support configuration so that consistent stream libraries are used (on AIX with XL). Add a cm_jsoncpp_reader.h header to include the CMake-provided copy of the json/reader.h header from CMake sources.
15 lines
398 B
C
15 lines
398 B
C
// Copyright 2007-2010 Baptiste Lepilleur
|
|
// Distributed under MIT license, or public domain if desired and
|
|
// recognized in your jurisdiction.
|
|
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
|
|
#ifndef JSON_JSON_H_INCLUDED
|
|
#define JSON_JSON_H_INCLUDED
|
|
|
|
#include "value.h"
|
|
#include "reader.h"
|
|
#include "writer.h"
|
|
#include "features.h"
|
|
|
|
#endif // JSON_JSON_H_INCLUDED
|