summaryrefslogtreecommitdiff
path: root/readline.h
diff options
context:
space:
mode:
Diffstat (limited to 'readline.h')
-rw-r--r--readline.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/readline.h b/readline.h
new file mode 100644
index 0000000..ab674ad
--- /dev/null
+++ b/readline.h
@@ -0,0 +1,23 @@
+/*
+ * readline.h: A plugin for the Video Disk Recorder
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ * $Id$
+ */
+
+#ifndef __readline_h_
+#define __readline_h_
+
+#include <sys/types.h>
+
+class cReadLineInfosatepg {
+private:
+ char *buffer;
+public:
+ cReadLineInfosatepg(void);
+ ~cReadLineInfosatepg();
+ char *Read(FILE *f,size_t *size);
+ };
+
+#endif