src
input.h
Go to the documentation of this file.
1 #ifndef _RE2C_PARSE_INPUT_
2 #define _RE2C_PARSE_INPUT_
3 
4 #include <stdio.h>
5 #include <string>
6 
7 #include "src/util/forbid_copy.h"
8 
9 namespace re2c {
10 
11 struct Input
12 {
13  FILE * file;
14  std::string file_name;
15 
16  Input (const char * fn);
17  ~Input ();
18  bool open ();
19 
21 };
22 
23 } // namespace re2c
24 
25 #endif // _RE2C_PARSE_INPUT_
bool open()
Definition: input.cc:10
~Input()
Definition: input.cc:23
std::string file_name
Definition: input.h:14
FORBID_COPY(Input)
Input(const char *fn)
Definition: input.cc:5
FILE * file
Definition: input.h:13
Definition: bitmap.cc:10