You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
383 B
C++
14 lines
383 B
C++
#ifndef INTERPRETER_DEFINES_H_INCLUDED
|
|
#define INTERPRETER_DEFINES_H_INCLUDED
|
|
|
|
#include <string>
|
|
#include "context.hpp"
|
|
|
|
namespace Interpreter{
|
|
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);
|
|
}
|
|
|
|
#endif
|