blob: 57bf8b42648c9b26e5373cbde1eb5c3ebf1af674 [file] [log] [blame]
Alexander Afanasyev7a696fb2012-03-01 17:17:22 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
3#include "ns3/core-module.h"
4#include "ns3/sync-helper.h"
5
6using namespace ns3;
7
8
9int
10main (int argc, char *argv[])
11{
12 bool verbose = true;
13
14 CommandLine cmd;
15 cmd.AddValue ("verbose", "Tell application to log if true", verbose);
16
17 cmd.Parse (argc,argv);
18
19 /* ... */
20
21 Simulator::Run ();
22 Simulator::Destroy ();
23 return 0;
24}
25
26