2011-04-17 20:06:22 -07:00
|
|
|
/*
|
2024-06-17 16:17:10 +02:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
2011-04-17 20:06:22 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "ns3/core-module.h"
|
|
|
|
|
|
|
|
|
|
using namespace ns3;
|
|
|
|
|
|
2022-10-07 20:08:35 +00:00
|
|
|
NS_LOG_COMPONENT_DEFINE("ScratchSimulator");
|
2014-09-26 15:51:00 -07:00
|
|
|
|
2022-06-05 21:01:11 -07:00
|
|
|
int
|
2022-10-07 20:08:35 +00:00
|
|
|
main(int argc, char* argv[])
|
2011-04-17 20:06:22 -07:00
|
|
|
{
|
2022-10-07 20:08:35 +00:00
|
|
|
NS_LOG_UNCOND("Scratch Simulator");
|
2013-12-12 14:42:43 -08:00
|
|
|
|
2022-10-07 20:08:35 +00:00
|
|
|
Simulator::Run();
|
|
|
|
|
Simulator::Destroy();
|
2022-05-26 17:49:38 +00:00
|
|
|
|
2022-10-07 20:08:35 +00:00
|
|
|
return 0;
|
2011-04-17 20:06:22 -07:00
|
|
|
}
|