X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Examples%2FDVBAdapter%2Ffrontend.cc;h=e93a6668c745170fbde3e52c1a4d6c0e25d98a48;hb=ac1dca71db955a9f19edc7ad1888bfe5bd126eac;hp=6e3afb2fde2d53003b84f9b1f40415fa63e312d9;hpb=8d2d26f114d3df0a60c5c516fcf40671b1e55558;p=senf.git diff --git a/Examples/DVBAdapter/frontend.cc b/Examples/DVBAdapter/frontend.cc index 6e3afb2..e93a666 100644 --- a/Examples/DVBAdapter/frontend.cc +++ b/Examples/DVBAdapter/frontend.cc @@ -1,9 +1,9 @@ // $Id$ // // Copyright (C) 2007 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Thorsten Horstmann +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Thorsten Horstmann // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -22,17 +22,17 @@ #include #include -#include "../../Socket/Protocols/DVB/DVBFrontendHandle.hh" +#include #define prefix_ -///////////////////////////////cc.p//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// int main(int argc, char const * argv[]) { try { senf::DVBFrontendHandle handle; int16_t strength; - + while (true) { handle.protocol().signalStrength(&strength); std::cout << "signal strength: " << strength << "\n"; @@ -45,7 +45,7 @@ int main(int argc, char const * argv[]) return 0; } -///////////////////////////////cc.e//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #undef prefix_