X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Examples%2FDVBAdapter%2FULEdec.hh;h=c6dc7384565ff14b185b857047642bd8a5e7ab72;hb=ae06fe86f16fdabb7ffb219d255444d2eb4f4f79;hp=7dcf9f84263501fc6f2ac2172aa7997701082684;hpb=74e753584f5271c3b9edffdb7ceee73a6a1de5c7;p=senf.git diff --git a/Examples/DVBAdapter/ULEdec.hh b/Examples/DVBAdapter/ULEdec.hh index 7dcf9f8..c6dc738 100644 --- a/Examples/DVBAdapter/ULEdec.hh +++ b/Examples/DVBAdapter/ULEdec.hh @@ -3,7 +3,7 @@ // Copyright (C) 2007 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// 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,10 +22,10 @@ // Definition of non-inline non-template functions -#include "Scheduler/Scheduler.hh" -#include "Packets/MPEGDVBBundle/TransportPacket.hh" -#include "Packets/MPEGDVBBundle/SNDUPacket.hh" -#include "Socket/Protocols/DVB/DVBDemuxHandles.hh" +#include +#include +#include +#include class ULEdec @@ -68,6 +68,7 @@ private: struct ULEdecException : public std::exception { ULEdecException(char const * what) : what_(what) {}; + ULEdecException(std::string const what) : what_(what) {}; virtual char const * what() const throw() { return what_.c_str(); } virtual ~ULEdecException() throw() {}; std::string what_;