Skip to content

Commit

Permalink
Add missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
bastientauran committed Nov 7, 2024
1 parent 6cc6ee2 commit 00f4641
Show file tree
Hide file tree
Showing 316 changed files with 1,487 additions and 0 deletions.
2 changes: 2 additions & 0 deletions helper/lora-forwarder-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
#include <ns3/string.h>
#include <ns3/trace-source-accessor.h>

#include <string>

NS_LOG_COMPONENT_DEFINE("LoraForwarderHelper");

namespace ns3
Expand Down
2 changes: 2 additions & 0 deletions helper/lora-network-server-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
#include "ns3/string.h"
#include "ns3/trace-source-accessor.h"

#include <string>

NS_LOG_COMPONENT_DEFINE("LoraNetworkServerHelper");

namespace ns3
Expand Down
11 changes: 11 additions & 0 deletions helper/satellite-beam-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,17 @@
#include <ns3/string.h>
#include <ns3/traffic-control-helper.h>

#include <algorithm>
#include <ios>
#include <iostream>
#include <list>
#include <map>
#include <set>
#include <sstream>
#include <string>
#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SatBeamHelper");

namespace ns3
Expand Down
2 changes: 2 additions & 0 deletions helper/satellite-beam-helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@
#include <ns3/satellite-superframe-sequence.h>
#include <ns3/satellite-typedefs.h>

#include <list>
#include <map>
#include <set>
#include <stdint.h>
#include <string>
#include <utility>
#include <vector>

namespace ns3
Expand Down
3 changes: 3 additions & 0 deletions helper/satellite-beam-user-info.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
#include "ns3/assert.h"
#include "ns3/log.h"

#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SatBeamUserInfo");

namespace ns3
Expand Down
1 change: 1 addition & 0 deletions helper/satellite-beam-user-info.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

#include <ns3/geo-coordinate.h>

#include <utility>
#include <vector>

namespace ns3
Expand Down
3 changes: 3 additions & 0 deletions helper/satellite-cno-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
#include "ns3/satellite-topology.h"
#include "ns3/singleton.h"

#include <string>
#include <utility>

NS_LOG_COMPONENT_DEFINE("SatelliteCnoHelper");

namespace ns3
Expand Down
3 changes: 3 additions & 0 deletions helper/satellite-cno-helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
#include <ns3/object.h>
#include <ns3/type-id.h>

#include <string>
#include <vector>

namespace ns3
{

Expand Down
6 changes: 6 additions & 0 deletions helper/satellite-conf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
#include "ns3/singleton.h"
#include "ns3/string.h"

#include <fstream>
#include <sstream>
#include <string>
#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SatConf");

namespace ns3
Expand Down
2 changes: 2 additions & 0 deletions helper/satellite-conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@

#include <fstream>
#include <set>
#include <string>
#include <utility>
#include <vector>

namespace ns3
Expand Down
7 changes: 7 additions & 0 deletions helper/satellite-group-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@
#include <ns3/satellite-topology.h>
#include <ns3/singleton.h>

#include <algorithm>
#include <list>
#include <map>
#include <set>
#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SatGroupHelper");

namespace ns3
Expand Down
1 change: 1 addition & 0 deletions helper/satellite-group-helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include <list>
#include <map>
#include <set>
#include <utility>
#include <vector>

namespace ns3
Expand Down
2 changes: 2 additions & 0 deletions helper/satellite-gw-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
#include <ns3/satellite-orbiter-net-device.h>
#include <ns3/satellite-typedefs.h>

#include <string>

NS_LOG_COMPONENT_DEFINE("SatGwHelper");

namespace ns3
Expand Down
9 changes: 9 additions & 0 deletions helper/satellite-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,16 @@
#include <ns3/system-path.h>
#include <ns3/type-id.h>

#include <cmath>
#include <fstream>
#include <iostream>
#include <map>
#include <set>
#include <sstream>
#include <string>
#include <sys/stat.h>
#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SatHelper");

Expand Down
4 changes: 4 additions & 0 deletions helper/satellite-helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@
#include <ns3/satellite-stats-helper-container.h>
#include <ns3/trace-helper.h>

#include <map>
#include <set>
#include <string>
#include <utility>
#include <vector>

namespace ns3
{
Expand Down
4 changes: 4 additions & 0 deletions helper/satellite-isl-arbiter-unicast-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
#include <ns3/satellite-topology.h>
#include <ns3/singleton.h>

#include <map>
#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SatIslArbiterUnicastHelper");

namespace ns3
Expand Down
4 changes: 4 additions & 0 deletions helper/satellite-isl-arbiter-unicast-helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
#include <ns3/node-container.h>
#include <ns3/satellite-isl-arbiter-unicast.h>

#include <map>
#include <utility>
#include <vector>

namespace ns3
{

Expand Down
2 changes: 2 additions & 0 deletions helper/satellite-lora-conf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
#include "ns3/singleton.h"
#include "ns3/string.h"

#include <vector>

NS_LOG_COMPONENT_DEFINE("SatLoraConf");

namespace ns3
Expand Down
2 changes: 2 additions & 0 deletions helper/satellite-on-off-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
#include "ns3/string.h"
#include "ns3/uinteger.h"

#include <string>

namespace ns3
{

Expand Down
5 changes: 5 additions & 0 deletions helper/satellite-orbiter-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@
#include "ns3/singleton.h"
#include "ns3/uinteger.h"

#include <algorithm>
#include <string>
#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SatOrbiterHelper");

namespace ns3
Expand Down
3 changes: 3 additions & 0 deletions helper/satellite-orbiter-helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@
#include "ns3/satellite-typedefs.h"
#include "ns3/traced-callback.h"

#include <map>
#include <string>
#include <utility>
#include <vector>

namespace ns3
{
Expand Down
4 changes: 4 additions & 0 deletions helper/satellite-traffic-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
#include <ns3/three-gpp-http-satellite-helper.h>
#include <ns3/type-id.h>

#include <string>
#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SatelliteTrafficHelper");

namespace ns3
Expand Down
3 changes: 3 additions & 0 deletions helper/satellite-traffic-helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
#include <ns3/satellite-stats-helper-container.h>
#include <ns3/string.h>

#include <map>
#include <string>

#define STRINGIFY(x) #x
#define TOSTRING(x) STRINGIFY(x)

Expand Down
7 changes: 7 additions & 0 deletions helper/satellite-user-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@
#include <ns3/satellite-typedefs.h>
#include <ns3/singleton.h>

#include <iostream>
#include <map>
#include <sstream>
#include <string>
#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SatUserHelper");

namespace ns3
Expand Down
2 changes: 2 additions & 0 deletions helper/satellite-ut-helper-lora.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
#include <ns3/satellite-ut-phy.h>
#include <ns3/singleton.h>

#include <vector>

NS_LOG_COMPONENT_DEFINE("SatUtHelperLora");

namespace ns3
Expand Down
2 changes: 2 additions & 0 deletions helper/satellite-ut-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
#include <ns3/satellite-phy-rx-carrier-conf.h>
#include <ns3/satellite-typedefs.h>

#include <string>

NS_LOG_COMPONENT_DEFINE("SatUtHelper");

namespace ns3
Expand Down
8 changes: 8 additions & 0 deletions helper/simulation-helper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@
#include <ns3/three-gpp-http-satellite-helper.h>
#include <ns3/uinteger.h>

#include <iostream>
#include <map>
#include <set>
#include <sstream>
#include <string>
#include <utility>
#include <vector>

NS_LOG_COMPONENT_DEFINE("SimulationHelper");

namespace ns3
Expand Down
2 changes: 2 additions & 0 deletions helper/simulation-helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
#include <ns3/satellite-enums.h>
#include <ns3/satellite-stats-helper-container.h>

#include <map>
#include <set>
#include <string>

namespace ns3
{
Expand Down
3 changes: 3 additions & 0 deletions model/geo-coordinate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
#include <ns3/log.h>

#include <cmath>
#include <ios>
#include <istream>
#include <ostream>
#include <sstream>

NS_LOG_COMPONENT_DEFINE("geo-coordinate");
Expand Down
3 changes: 3 additions & 0 deletions model/geo-coordinate.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
#include <ns3/attribute.h>
#include <ns3/vector.h>

#include <istream>
#include <ostream>

namespace ns3
{

Expand Down
4 changes: 4 additions & 0 deletions model/julian-date.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,16 @@
#include <ns3/assert.h>
#include <ns3/nstime.h>

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <iomanip>
#include <ostream>
#include <sstream>
#include <stdint.h>
#include <string>
#include <utility>
#include <vector>

namespace ns3
{
Expand Down
1 change: 1 addition & 0 deletions model/julian-date.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <ostream>
#include <stdint.h>
#include <string>
#include <utility>

namespace ns3
{
Expand Down
3 changes: 3 additions & 0 deletions model/lora-adr-component.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@

#include <ns3/log.h>

#include <cmath>
#include <list>

namespace ns3
{

Expand Down
2 changes: 2 additions & 0 deletions model/lora-beam-tag.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

#include <ns3/log.h>

#include <ostream>

NS_LOG_COMPONENT_DEFINE("LoraBeamTag");

namespace ns3
Expand Down
2 changes: 2 additions & 0 deletions model/lora-beam-tag.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

#include <ns3/tag.h>

#include <ostream>

namespace ns3
{

Expand Down
2 changes: 2 additions & 0 deletions model/lora-device-address.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#include <ns3/log.h>

#include <bitset>
#include <ostream>
#include <string>

namespace ns3
{
Expand Down
1 change: 1 addition & 0 deletions model/lora-device-address.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#include <ns3/address.h>

#include <ostream>
#include <string>

namespace ns3
Expand Down
Loading

0 comments on commit 00f4641

Please sign in to comment.