1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
#include "clicommanddesc.h" CliCommandDesc::CliCommandDesc() { } void CliCommandDesc::execute() { } QString CliCommandDesc::shortHelp() const { return tr("shows details about the table"); } QString CliCommandDesc::fullHelp() const { return QString(); } void CliCommandDesc::defineSyntax() { syntax.setName("desc"); syntax.addArgument(TABLE, tr("table")); }