World of Might and Magic  0.2.0
Open reimplementation of Might and Magic 6 7 8 game engine
Файл EngineConfigFactory.cpp

См. исходные тексты.

Функции

static bool FindCaseInsensitive (const std::string &haystack, const std::string &needle)
 

Функции

◆ FindCaseInsensitive()

static bool FindCaseInsensitive ( const std::string haystack,
const std::string needle 
)
static

См. определение в файле EngineConfigFactory.cpp строка 59

59  {
60  auto i = std::search(
61  haystack.begin(), haystack.end(),
62  needle.begin(), needle.end(),
63  [](char c1, char c2) {return std::toupper(c1) == std::toupper(c2); });
64 
65  return i != haystack.end();
66 }

Используется в Engine_::EngineConfigFactory::CreateFromCommandLine().

+ Граф вызова функции: