1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 21:14:33 +00:00

Replace include of <libtorrent/session.hpp> with forward declaration

This commit is contained in:
Ivan Sorokin 2014-10-18 03:37:34 +04:00
parent c9b27e032b
commit b2e3739da2
2 changed files with 5 additions and 1 deletions

View File

@ -65,6 +65,7 @@
#include <QChar>
#include "fs_utils.h"
#include <libtorrent/session.hpp>
using namespace libtorrent;

View File

@ -31,10 +31,13 @@
#ifndef GEOIPMANAGER_H
#define GEOIPMANAGER_H
#include <libtorrent/session.hpp>
#include <QString>
#include <QIcon>
namespace libtorrent {
class session;
}
class GeoIPManager : public QObject {
Q_OBJECT