~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/csv/transparent_file.h

Removed dead variable, sorted authors file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
#include <sys/types.h>
17
17
#include <sys/stat.h>
 
18
#include <my_dir.h>
18
19
 
19
20
 
20
21
class Transparent_file
21
22
{
22
23
  File filedes;
23
 
  unsigned char *buff;  /* in-memory window to the file or mmaped area */
 
24
  uchar *buff;  /* in-memory window to the file or mmaped area */
24
25
  /* current window sizes */
25
26
  off_t lower_bound;
26
27
  off_t upper_bound;
27
 
  uint32_t buff_size;
 
28
  uint buff_size;
28
29
 
29
30
public:
30
31
 
32
33
  ~Transparent_file();
33
34
 
34
35
  void init_buff(File filedes_arg);
35
 
  unsigned char *ptr();
 
36
  uchar *ptr();
36
37
  off_t start();
37
38
  off_t end();
38
39
  char get_value (off_t offset);