Orcus
Loading...
Searching...
No Matches
json_global.hpp
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 */
7
8#ifndef INCLUDED_ORCUS_JSON_GLOBAL_HPP
9#define INCLUDED_ORCUS_JSON_GLOBAL_HPP
10
11#include "orcus/env.hpp"
12
13#include <string>
14
15namespace orcus { namespace json {
16
24ORCUS_PSR_DLLPUBLIC std::string escape_string(const std::string& input);
25
26}}
27
28#endif
29
30/* vim:set shiftwidth=4 softtabstop=4 expandtab: */