mirror of
https://github.com/ModOrganizer2/modorganizer-uibase.git
synced 2026-07-27 14:03:49 -07:00
* Add proper CMake packaging for UIBase. * Add alias mo2::uibase target for uibase. * Add a few string methods to remove boost dependencies.
17 lines
333 B
C++
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
|