1// LAF Base Library
2// Copyright (c) 2001-2016 David Capello
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef BASE_REPLACE_STRING_H_INCLUDED
8#define BASE_REPLACE_STRING_H_INCLUDED
9#pragma once
10
11#include <string>
12
13namespace base {
14
15 void replace_string(
16 std::string& subject,
17 const std::string& replace_this,
18 const std::string& with_that);
19
20}
21
22#endif
23