Files
unison/scratch/scratch-simulator.cc

21 lines
288 B
C++
Raw Normal View History

/*
2024-06-17 16:17:10 +02:00
* SPDX-License-Identifier: GPL-2.0-only
*/
#include "ns3/core-module.h"
using namespace ns3;
2022-10-07 20:08:35 +00:00
NS_LOG_COMPONENT_DEFINE("ScratchSimulator");
int
2022-10-07 20:08:35 +00:00
main(int argc, char* argv[])
{
2022-10-07 20:08:35 +00:00
NS_LOG_UNCOND("Scratch Simulator");
2022-10-07 20:08:35 +00:00
Simulator::Run();
Simulator::Destroy();
2022-10-07 20:08:35 +00:00
return 0;
}