2012-12-21 18:09:31 +00:00
|
|
|
#ifndef INTERPRETER_DEFINES_H_INCLUDED
|
|
|
|
#define INTERPRETER_DEFINES_H_INCLUDED
|
2012-12-20 23:16:34 +00:00
|
|
|
|
|
|
|
#include "context.hpp"
|
2022-09-22 18:26:05 +00:00
|
|
|
#include <string>
|
2012-12-20 23:16:34 +00:00
|
|
|
|
2022-09-22 18:26:05 +00:00
|
|
|
namespace Interpreter
|
|
|
|
{
|
2023-05-21 14:39:32 +00:00
|
|
|
std::string fixDefinesDialog(std::string_view text, Context& context);
|
|
|
|
std::string fixDefinesMsgBox(std::string_view text, Context& context);
|
|
|
|
std::string fixDefinesBook(std::string_view text, Context& context);
|
2012-12-20 23:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|