Added documentation for DVBSocketController
[senf.git] / Socket / Protocols / DVB / DVBFrontendHandle.cc
index 3b01f22..491cf49 100644 (file)
@@ -3,6 +3,7 @@
 // Copyright (C) 2007
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
+//     Anton Gillert <atx@berlios.de>
 //     Thorsten Horstmann <tho@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -29,7 +30,7 @@
 // Custom includes
 #include <boost/format.hpp>
 #include <sys/socket.h>
-#include "../../../Utils/Exception.hh"
+#include "senf/Utils/Exception.hh"
 #include <sys/ioctl.h>
 
 
@@ -151,7 +152,9 @@ const
        
     tune(frontend);
 }
-prefix_ void senf::DVBFrontendSocketProtocol::setNonBlock(bool on) const{
+prefix_ void senf::DVBFrontendSocketProtocol::setNonBlock(bool on) 
+    const
+{
    if(on)
        ::fcntl(fd(), F_SETFL, ::fcntl(fd(), F_GETFL) | O_NONBLOCK);
    else
@@ -223,7 +226,7 @@ prefix_ int16_t senf::DVBFrontendSocketProtocol::signalStrength()
 }
 
 prefix_ int16_t senf::DVBFrontendSocketProtocol::signalNoiseRatio()
-    const
+    const 
 {
     int16_t snr;
     if (::ioctl(fd(), FE_READ_SNR, &snr) < 0)