mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-19 14:21:41 +00:00
12 lines
110 B
C++
12 lines
110 B
C++
#pragma once
|
|
|
|
namespace FEX::Debugger::IR {
|
|
class Lexer {
|
|
public:
|
|
bool Lex(char const *IR);
|
|
|
|
private:
|
|
};
|
|
|
|
}
|