+REMARKS:
+Constructor for the wxEchoVariable class that self registers itself with
+the list of all echo variables when the static class instance is created
+at program init time (remember all the constructors get called before
+the main program function!).
+****************************************************************************/
+wxString wxEchoVariable::GetValue(
+ const wxChar *varName,
+ const wxChar *parms)
+{
+ wxEchoVariable *info = wxEchoVariable::FindVariable(varName);
+ if (info)
+ return info->m_getValueFn(parms);