18 lines
229 B
C++
18 lines
229 B
C++
#ifndef __JAVA_PARSER_GLOBALS_H
|
|
#define __JAVA_PARSER_GLOBALS_H
|
|
|
|
#include <vector>
|
|
#include <cstdint>
|
|
|
|
namespace Globals
|
|
{
|
|
inline std::vector<uint8_t> &buffer()
|
|
{
|
|
static std::vector<uint8_t> BUFFER;
|
|
return BUFFER;
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|