From 9f1ed0fdaab805d8fa7bd1cad62e8fcd8235677a Mon Sep 17 00:00:00 2001 From: Marten Richter Date: Thu, 8 Nov 2012 08:14:17 +0100 Subject: [PATCH] Fix linebreaks in tfeed.h --- tfeed.h | 56 ++++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 44 insertions(+), 12 deletions(-) diff --git a/tfeed.h b/tfeed.h index 91a7ca0..a4fbe61 100644 --- a/tfeed.h +++ b/tfeed.h @@ -1,22 +1,54 @@ -/* Copyright 2008 Marten Richter - This file is part of VOMP. +/* + Copyright 2008 Marten Richter + + This file is part of VOMP. + VOMP is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version. + VOMP is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + GNU General Public License for more details. + You should have received a copy of the GNU General Public License along with VOMP; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -*/ -#ifndef TFEED_H #define TFEED_H -#include #include -#include "threadsystem.h" -class Callback; -class TFeed: public Thread_TYPE { public: TFeed(Callback* tcb); int init(); int shutdown(); int start(); void stop(); void enable(); void disable(); private: void threadMethod(); void threadPostStopCleanup() { }; int teletextEnabled; Callback& cb; }; - -#endif +*/ + + +#ifndef TFEED_H +#define TFEED_H + + +#include +#include + +#include "threadsystem.h" + +class Callback; + +class TFeed: public Thread_TYPE { +public: + TFeed(Callback* tcb); + int init(); + int shutdown(); + int start(); + void stop(); + void enable(); + void disable(); + +private: + + void threadMethod(); + void threadPostStopCleanup() { + }; + int teletextEnabled; + Callback& cb; +}; + +#endif + -- 2.39.2