Files
unison/examples/tutorial/hello-simulator.cc

28 lines
841 B
C++
Raw Normal View History

2008-06-28 19:46:55 -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("HelloSimulator");
2011-05-13 15:35:31 -04:00
int
2022-10-07 20:08:35 +00:00
main(int argc, char* argv[])
2008-06-28 19:46:55 -07:00
{
2022-10-07 20:08:35 +00:00
NS_LOG_UNCOND("Hello Simulator");
return 0;
2008-06-28 19:46:55 -07:00
}