Euphoria
sol.h
Go to the documentation of this file.
1 #pragma once
2 
3 #define SOL_CHECK_ARGUMENTS 1
4 
5 
6 #include <limits> // seems like sol uses numeric_limits without including it...!
7 
9 
10 
13  #include "sol/sol.hpp"
15 
16 
17 
18 struct LuaState
19 {
21  bool has_error = false;
22  std::string error;
23 };
#define DISABLE_WARNING_PUSH
#define DISABLE_GLOBAL_DECLARATION
#define DISABLE_WARNING_POP
Definition: sol.h:19
sol::state state
Definition: sol.h:20
bool has_error
Definition: sol.h:21
std::string error
Definition: sol.h:22
ParserState state
Definition: ui_text.cc:134