mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-27 20:20: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.
20 lines
344 B
C++
20 lines
344 B
C++
#ifndef _RE2C_IR_COMPILE_
|
|
#define _RE2C_IR_COMPILE_
|
|
|
|
#include "src/util/c99_stdint.h"
|
|
#include <string>
|
|
|
|
#include "src/util/smart_ptr.h"
|
|
|
|
namespace re2c
|
|
{
|
|
|
|
class DFA;
|
|
struct Output;
|
|
struct Spec;
|
|
|
|
smart_ptr<DFA> compile (Spec & spec, Output & output, const std::string & cond, uint32_t cunits);
|
|
|
|
} // namespace re2c
|
|
|
|
#endif // _RE2C_IR_COMPILE_
|