X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Examples%2FDVBAdapter%2Ffrontend.cc;h=e93a6668c745170fbde3e52c1a4d6c0e25d98a48;hb=ac1dca71db955a9f19edc7ad1888bfe5bd126eac;hp=f29190548f0c14f275fa2312af5d8d7ce44479cf;hpb=65066c0e037d1de437d6121903e1dd511b41e940;p=senf.git diff --git a/Examples/DVBAdapter/frontend.cc b/Examples/DVBAdapter/frontend.cc index f291905..e93a666 100644 --- a/Examples/DVBAdapter/frontend.cc +++ b/Examples/DVBAdapter/frontend.cc @@ -1,9 +1,9 @@ -// $Id: ULEdec.cc 327 2007-07-20 10:03:44Z tho $ +// $Id$ // -// Copyright (C) 2006 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// Copyright (C) 2007 +// 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,29 +22,17 @@ #include #include -#include -#include -#include -#include - -#include "Scheduler/Scheduler.hh" -#include "Packets/DefaultBundle/EthernetPacket.hh" -#include "Packets/MPEGDVBBundle/DatagramSection.hh" -#include "Utils/membind.hh" -#include "Socket/DVBFrontendHandle.hh" -#include "Packets/ParseInt.hh" -#include "Packets/Packet.hh" -#include "Packets/PacketData.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"; @@ -57,8 +45,7 @@ int main(int argc, char const * argv[]) return 0; } - -///////////////////////////////cc.e//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #undef prefix_