X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FSocket%2FProtocols%2FDVB%2FDVBSocketController.cc;fp=senf%2FSocket%2FProtocols%2FDVB%2FDVBSocketController.cc;h=21c18ab304c3b6b1a433ce84e5bb96c0d3347935;hb=21be434729b552e31b856b2f42fc978062d0dd55;hp=c72ba1574c756ed218c38c3c87213336fc0ad1b1;hpb=f13780e9e4da7df981d6f6542fbdc714beb34765;p=senf.git diff --git a/senf/Socket/Protocols/DVB/DVBSocketController.cc b/senf/Socket/Protocols/DVB/DVBSocketController.cc index c72ba15..21c18ab 100644 --- a/senf/Socket/Protocols/DVB/DVBSocketController.cc +++ b/senf/Socket/Protocols/DVB/DVBSocketController.cc @@ -431,10 +431,10 @@ prefix_ void senf::DVBSocketController::initConsole() dir.doc("DVB Controller " + controllerNr); ++controllerNr; - dir.add("type", fty::BoundCommand(this, &DVBSocketController::getTypeString) + dir.add("type", fty::Command(this, &DVBSocketController::getTypeString) .doc("Shows actual type of card DVB-{T, S, C}") ); - dir.add("info", fty::BoundCommand(this, &DVBSocketController::getTuneInfo) + dir.add("info", fty::Command(this, &DVBSocketController::getTuneInfo) .doc("Returns a string which shows actual tuning status.\n" "'S' prints signal strength (in hex)\n" "'s' prints singal to noise ration (in hex)\n" @@ -446,7 +446,7 @@ prefix_ void senf::DVBSocketController::initConsole() "and could end in throwing an exception!") .arg("conf", "Ssbuf", kw::default_value = "Ssbuf") ); - dir.add("tune", fty::BoundCommand(this,&DVBSocketController::tuneToCMD) + dir.add("tune", fty::Command(this,&DVBSocketController::tuneToCMD) .doc("tunes to channel listet in the configfile.") .arg("channel", "channel to tune") .arg("mode", "mode 'sync' or 'async'", kw::default_value = "async") );