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
|
|
|
|
{
|
2016-02-16 13:55:13 +00:00
|
|
|
std::string fixDefinesDialog(const std::string& text, Context& context);
|
|
|
|
std::string fixDefinesMsgBox(const std::string& text, Context& context);
|
|
|
|
std::string fixDefinesBook(const std::string& text, Context& context);
|
2012-12-20 23:16:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|