Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Application::IDo::DoSystem ( CString  cmdLine  )  [inline]

Definition at line 1646 of file mainIDo.cpp.

References CallSystem(), ILOG_INFO, mDryRun, ResolveExports(), and Impala::StringTail().

Referenced by HandleCmd().

01647     {
01648         ILOG_INFO("DoSystem " << cmdLine);
01649         String line = StringTail(cmdLine, ' ', false);
01650         line = ResolveExports(line);
01651         if (line.empty())
01652             return;
01653         if (mDryRun)
01654             std::cout << line << std::endl;
01655         else
01656             CallSystem(line);
01657     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:14:24 2011 for ImpalaSrc by  doxygen 1.5.1