mirror of
https://gitlab.ibr.cs.tu-bs.de/tschuber/ns-3-leo.git
synced 2025-06-08 01:53:58 +02:00
26 lines
402 B
C++
26 lines
402 B
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
|
|
#include "ns3/core-module.h"
|
|
#include "ns3/leo-helper.h"
|
|
|
|
using namespace ns3;
|
|
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
bool verbose = true;
|
|
|
|
CommandLine cmd;
|
|
cmd.AddValue ("verbose", "Tell application to log if true", verbose);
|
|
|
|
cmd.Parse (argc,argv);
|
|
|
|
/* ... */
|
|
|
|
Simulator::Run ();
|
|
Simulator::Destroy ();
|
|
return 0;
|
|
}
|
|
|
|
|