mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
17 lines
215 B
C++
17 lines
215 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
namespace chatterino {
|
|
namespace util {
|
|
|
|
class NetworkRequester : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
signals:
|
|
void requestUrl();
|
|
};
|
|
|
|
} // namespace util
|
|
} // namespace chatterino
|