* src/misc/escape.hh: Correct documentation.

This commit is contained in:
Alexandre Duret-Lutz 2011-02-21 21:49:19 +01:00
parent 94d1c57ed4
commit 428b21552f
2 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2011-02-21 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/misc/escape.hh: Correct documentation.
2011-02-14 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Correct tgba_explicit::compute_support_conditions.

View file

@ -1,3 +1,5 @@
// Copyright (C) 2011 Laboratoire de Recherche et Developpement de
// l'Epita (LRDE).
// Copyright (C) 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
// et Marie Curie.
@ -30,9 +32,12 @@ namespace spot
/// \addtogroup misc_tools
/// @{
/// Escape " and \ characters in \a str.
/// Escape <code>"</code>, <code>\</code>, and <code>\n</code>
/// characters in \a str.
std::ostream& escape_str(std::ostream& os, const std::string& str);
/// Escape " and \ characters in \a str.
/// Escape <code>"</code>, <code>\</code>, and <code>\n</code>
/// characters in \a str.
std::string escape_str(const std::string& str);
/// @}