mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-14 11:06:57 +01:00
42 lines
954 B
C++
42 lines
954 B
C++
//
|
|
// JSONString.h
|
|
//
|
|
// Library: Foundation
|
|
// Package: Core
|
|
// Module: String
|
|
//
|
|
// JSONString utility functions.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Foundation_JSONString_INCLUDED
|
|
#define Foundation_JSONString_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
void Foundation_API toJSON(const std::string& value, std::ostream& out, bool wrap = true);
|
|
/// Formats string value into the supplied output stream by
|
|
/// escaping control characters.
|
|
/// If wrap is true, the resulting string is enclosed in double quotes
|
|
|
|
std::string Foundation_API toJSON(const std::string& value, bool wrap = true);
|
|
/// Formats string value by escaping control characters.
|
|
/// If wrap is true, the resulting string is enclosed in double quotes
|
|
/// Returns formatted string.
|
|
|
|
|
|
} // namespace Poco
|
|
|
|
|
|
#endif // Foundation_JSONString_INCLUDED
|