mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-31 10:36:30 +03:00
ecode: Added the possibility to search and replace by replacing captures from Lua Pattern, for example, searching for: "function (%w+)%(%)" and replacing for "fn $1()" will replace the function declaration from "function (functionName)()" to "fn (functionName)()". The feature was used to remove the PlusCallback dependency =).
10 lines
197 B
C++
10 lines
197 B
C++
#ifndef EE_CORE_CORE_HPP
|
|
#define EE_CORE_CORE_HPP
|
|
|
|
#include <eepp/core/containers.hpp>
|
|
#include <eepp/core/debug.hpp>
|
|
#include <eepp/core/memorymanager.hpp>
|
|
#include <eepp/core/string.hpp>
|
|
|
|
#endif
|