Lines Matching defs:File
1 /* -*-C++-*- $NetBSD: file.h,v 1.6 2008/04/28 20:23:20 martin Exp $ */
40 class File {
48 File(Console *&cons) : _cons(cons) { /* NO-OP */ }
49 virtual ~File() { /* NO-OP */ }
62 class FileManager : public File {
67 ASCII_FLAG = 0x01, /* bit 0 set: file probably ascii text */
70 ORIG_NAME = 0x08, /* bit 3 set: original file name present */
71 COMMENT = 0x10, /* bit 4 set: file comment present */
78 int _z_eof; /* set if end of input file */
92 File *_file;