A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
bvec.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2007,2008, 2009 INRIA, UDcast
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author: Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
7 * <amine.ismail@udcast.com>
8 */
9
10#ifndef BVEC_H
11#define BVEC_H
12
13#include <vector>
14
15namespace ns3
16{
17/// boolean vector typedef
18typedef std::vector<bool> Bvec;
19} // namespace ns3
20
21#endif /* BVEC_H */
Every class exported by the ns3 library is enclosed in the ns3 namespace.
std::vector< bool > Bvec
boolean vector typedef
Definition bvec.h:18