CPPTL support is no longer relevant to JsonCpp, and can be removed from the library. This patch removes all mentions of CPPTL, by removing all definitions and code sections conditionally compiled only when JsonCpp is used with CPPTL. Include guards are also renamed to not refer to CPPTL where appropriate.
20 lines
535 B
C
20 lines
535 B
C
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
|
// 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_AUTOLINK_H_INCLUDED
|
|
#define JSON_AUTOLINK_H_INCLUDED
|
|
|
|
#include "config.h"
|
|
|
|
#if !defined(JSON_NO_AUTOLINK) && !defined(JSON_DLL_BUILD)
|
|
#define AUTOLINK_NAME "json"
|
|
#ifdef JSON_DLL
|
|
#define AUTOLINK_DLL
|
|
#endif
|
|
#include "autolink.h"
|
|
#endif
|
|
|
|
#endif // JSON_AUTOLINK_H_INCLUDED
|