mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-28 18:00:40 +00:00
8c95516224
- updaterevision for automated revision string generation - re2c as a prerequisite to use sc_man in the future - zipdir to automatically generate an engine resource file.
25 lines
330 B
C++
25 lines
330 B
C++
#ifndef _RE2C_PARSE_INPUT_
|
|
#define _RE2C_PARSE_INPUT_
|
|
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
#include "src/util/forbid_copy.h"
|
|
|
|
namespace re2c {
|
|
|
|
struct Input
|
|
{
|
|
FILE * file;
|
|
std::string file_name;
|
|
|
|
Input (const char * fn);
|
|
~Input ();
|
|
bool open ();
|
|
|
|
FORBID_COPY (Input);
|
|
};
|
|
|
|
} // namespace re2c
|
|
|
|
#endif // _RE2C_PARSE_INPUT_
|