blob: ab674adf78f6bfb3f4a90a4f5ade3b16a2518179 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|