Files
Mikaël Capelle 96a2f3aeb8 Move to VCPKG (#155)
* Add proper CMake packaging for UIBase.
* Add alias mo2::uibase target for uibase.
* Add a few string methods to remove boost dependencies.
2025-05-29 10:56:10 +02:00

17 lines
333 B
C++

#pragma once
#include <string>
#include <string_view>
#include "dllimport.h"
namespace MOBase
{
QDLLEXPORT void ireplace_all(std::string& input, std::string_view search,
std::string_view replace) noexcept;
QDLLEXPORT bool iequals(std::string_view lhs, std::string_view rhs);
} // namespace MOBase