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 <string>
|
|
|
|
#include "context.hpp"
|
|
|
|
|
|
|
|
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
|