-/*\r Copyright 2008 Marten Richter\r
- This file is part of VOMP.\r
+/*
+ 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.\r
+ (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.\r
+ 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.
-*/\r\r
-#ifndef TFEED_H\r#define TFEED_H\r
-#include <stdio.h>\r#include <time.h>\r
-#include "threadsystem.h"\r
-class Callback;\r
-class TFeed: public Thread_TYPE {\rpublic:\r TFeed(Callback* tcb);\r int init();\r int shutdown();\r int start();\r void stop();\r void enable();\r void disable();\r\rprivate:\r\r void threadMethod();\r void threadPostStopCleanup() {\r };\r\r int teletextEnabled;\r Callback& cb;\r};\r
-\r
-#endif\r
+*/
+
+
+#ifndef TFEED_H
+#define TFEED_H
+
+
+#include <stdio.h>
+#include <time.h>
+
+#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
+