Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / Examples / DVBAdapter / frontend.cc
index 6e3afb2..e93a666 100644 (file)
@@ -1,9 +1,9 @@
 // $Id$
 //
 // Copyright (C) 2007
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
-//     Thorsten Horstmann <thorsten.horstmann@fokus.fraunhofer.de>
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
+//     Thorsten Horstmann <tho@berlios.de>
 //
 // 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
 
 #include <string>
 #include <iostream>
-#include "../../Socket/Protocols/DVB/DVBFrontendHandle.hh"
+#include <senf/Socket/Protocols/DVB.hh>
 
 #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_
 
 \f