eepp: Pump version.

ecode: Added version number and Help menu. Moved all project source files into the "ecode" namespace.
This commit is contained in:
Martín Lucas Golini
2022-06-12 02:51:16 -03:00
parent 6ffda35039
commit 5280ac40ac
36 changed files with 286 additions and 59 deletions

View File

@@ -2,6 +2,8 @@
#include <eepp/system/filesystem.hpp>
#include <eepp/system/luapattern.hpp>
namespace ecode {
static int countNewLines( const std::string& text, const size_t& start, const size_t& end ) {
const char* startPtr = text.c_str() + start;
const char* endPtr = text.c_str() + end;
@@ -185,3 +187,5 @@ void ProjectSearch::find( const std::vector<std::string> files, std::string stri
} );
}
}
}