File indexing completed on 2024-06-02 05:05:38

0001 /*
0002     SPDX-FileCopyrightText: 2005 Joris Guisson <joris.guisson@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #ifndef BTURLENCODER_H
0007 #define BTURLENCODER_H
0008 
0009 #include "constants.h"
0010 #include <qstring.h>
0011 
0012 namespace bt
0013 {
0014 /**
0015 @author Joris Guisson
0016 */
0017 class URLEncoder
0018 {
0019 public:
0020     static QString encode(const char *buf, Uint32 size);
0021 };
0022 
0023 }
0024 
0025 #endif