2011-04-17 20:06:22 -07:00
|
|
|
/*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
|
* published by the Free Software Foundation;
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#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
|
|
|
}
|