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

void Impala::Application::IDo::InitCurCmd ( CString  cmdLine  )  [inline, private]

Definition at line 2394 of file mainIDo.cpp.

References Impala::Util::StringParser::GetString(), mCurCmd, mCurCmdArgs, and Impala::Util::StringParser::TheEnd().

Referenced by HandleCmd().

02395     {
02396         Util::StringParser p(cmdLine);
02397         mCurCmd = p.GetString(' ', false);
02398         mCurCmdArgs.clear();
02399         while (!p.TheEnd())
02400         {
02401             String arg = p.GetString(' ', false);
02402             if (!arg.empty())
02403                 mCurCmdArgs.push_back(arg);
02404         }
02405     }

Here is the call graph for this function:


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