Audacity 3.2.0
UrlEncode.h
Go to the documentation of this file.
1/*!********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 @file UrlEncode.h
6 @brief Declare a function to perform URL encoding of a string.
7
8 Dmitry Vedenko
9 **********************************************************************/
10
11#pragma once
12
13#include <string>
14
15namespace audacity
16{
17
18STRING_UTILS_API std::string UrlEncode (const std::string& url);
19
20}
std::string UrlEncode(const std::string &url)
Definition: UrlEncode.cpp:16