A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
demangle.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2005,2006 INRIA
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
7 * Modified by: Gabriel Ferreira <gabrielcarvfer@gmail.com>
8 * Moved the Demangle function out of CallbackImplBase
9 */
10
11#ifndef NS3_DEMANGLE_H
12#define NS3_DEMANGLE_H
13
14#include <string>
15
16namespace ns3
17{
18/**
19 * \param [in] mangled The mangled string
20 * \return The demangled form of mangled
21 */
22std::string Demangle(const std::string& mangled);
23}; // namespace ns3
24
25#endif // NS3_DEMANGLE_H
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::string Demangle(const std::string &mangled)
Definition demangle.cc:69