class BaseLoop: help page added; ReadMe adapted.

This commit is contained in:
Roland Jax
2014-05-12 18:27:56 +02:00
parent 2a2b638fc4
commit 820b4dd6be
3 changed files with 20 additions and 1 deletions
+2
View File
@@ -70,6 +70,7 @@ private:
cyc, // fetch cycle data
dump, // change dump state
log, // change log level
help, // print commands
notfound
};
@@ -81,6 +82,7 @@ private:
if (strcasecmp(item.c_str(), "cyc") == 0) return cyc;
if (strcasecmp(item.c_str(), "dump") == 0) return dump;
if (strcasecmp(item.c_str(), "log") == 0) return log;
if (strcasecmp(item.c_str(), "help") == 0) return help;
return notfound;
}