Перепись с const std::string& на std::string_view

This commit is contained in:
2026-01-29 09:33:38 +03:00
parent 91d20fcf01
commit 9a7c9b7e7c
11 changed files with 47 additions and 47 deletions
+2 -2
View File
@@ -8,10 +8,10 @@ namespace uad
{
class IUserTreatmentSchemeDAO {
public:
virtual std::vector<user_treatment_scheme_dto> FindByUserUUID(const std::string& login) = 0;
virtual std::vector<user_treatment_scheme_dto> FindByUserUUID(std::string_view login) = 0;
virtual void CreateUserTreatmentScheme(
const std::string& user_login,
std::string_view user_login,
const user_treatment_scheme_dto& dto
) = 0;