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