Files
unison/src/core/examples/command-line-example.cc

69 lines
2.2 KiB
C++
Raw Normal View History

/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2013 Lawrence Livermore National Laboratory
*
* 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
*
* Author: Peter D. Barnes, Jr. <pdbarnes@llnl.gov>
*/
#include <iostream>
#include <iomanip>
#include <string>
#include "ns3/core-module.h"
using namespace ns3;
std::string g_cbArg="cbArg default";
bool SetCbArg (std::string val)
{
g_cbArg = val;
return true;
}
int main (int argc, char *argv[])
{
int intArg = 1;
bool boolArg = false;
std::string strArg = "strArg default";
CommandLine cmd;
cmd.Usage ("CommandLine example program.\n"
"\n"
"This little program demonstrates how to use CommandLine.");
cmd.AddValue ("intArg", "an int argument", intArg);
cmd.AddValue ("boolArg", "a bool argument", boolArg);
cmd.AddValue ("strArg", "a string argument", strArg);
2014-08-14 12:46:11 -07:00
cmd.AddValue ("anti", "ns3::RandomVariableStream::Antithetic");
cmd.AddValue ("cbArg", "a string via callback", MakeCallback (SetCbArg));
cmd.Parse (argc, argv);
std::cout << std::left
<< std::setw (10) << "intArg:" << intArg << std::endl;
std::cout << std::setw (10) << "boolArg:"
<< std::boolalpha << boolArg
<< std::noboolalpha << std::endl;
std::cout << std::setw (10) << "strArg:" << "\"" << strArg << "\"" << std::endl;
std::cout << std::setw (10) << "cbArg:" << "\"" << g_cbArg << "\"" << std::endl;
return 0;
}