36 NS_LOG_FUNCTION (
this << arg);
71 std::string a4, std::string a5)
82 std::string a4, std::string a5, std::string a6)
94 std::string a4, std::string a5, std::string a6, std::string a7)
107 std::string::size_type cur = 0, next = 0;
108 cur = args.find_first_not_of (
" ", 0);
109 next = args.find (
" ", cur);
110 while (next != std::string::npos)
113 cur = args.find_first_not_of (
" ", next);
114 next = args.find (
" ", cur);
116 AddArgument (args.substr (cur, args.size () - cur));
126 m_envs.push_back (std::make_pair (name,value));
137 NS_LOG_FUNCTION (
this);
138 ApplicationContainer apps;
139 for (NodeContainer::Iterator j = c.Begin (); j != c.End (); ++j)
141 Ptr<DceApplication> dce = CreateObject<DceApplication> ();
144 dce->SetArguments (
m_args);
145 dce->SetEnvironment (
m_envs);
153 (*j)->AddApplication (dce);