A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
Loading...
Searching...
No Matches
node-printer.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2018 Lawrence Livermore National Laboratory
3
*
4
* SPDX-License-Identifier: GPL-2.0-only
5
*
6
* Author: Peter D. Barnes, Jr. <pdbarnes@llnl.gov>
7
*/
8
#ifndef NODE_PRINTER_H
9
#define NODE_PRINTER_H
10
11
#include <ostream>
12
13
/**
14
* \file
15
* \ingroup logging
16
* Declaration of ns3::NodePrinter function pointer type
17
* and ns3::DefaultNodePrinter function.
18
*/
19
20
namespace
ns3
21
{
22
23
/**
24
* Function signature for prepending the node id
25
* to a log message.
26
*
27
* \param [in,out] os The output stream to print on.
28
*/
29
typedef
void (*
NodePrinter
)(std::ostream& os);
30
31
/**
32
* \ingroup logging
33
* Default node id printer implementation.
34
*
35
* \param [in,out] os The output stream to print the node id on.
36
*/
37
void
DefaultNodePrinter
(std::ostream& os);
38
39
}
// namespace ns3
40
41
#endif
/* NODE_H */
ns3::DefaultNodePrinter
void DefaultNodePrinter(std::ostream &os)
Default node id printer implementation.
Definition
node-printer.cc:28
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::NodePrinter
void(* NodePrinter)(std::ostream &os)
Function signature for prepending the node id to a log message.
Definition
node-printer.h:29
src
core
model
node-printer.h
Generated on Fri Nov 8 2024 13:58:59 for ns-3 by
1.11.0