Skip to content
Snippets Groups Projects
xdgurl.cpp 458 B
Newer Older
  • Learn to ignore specific revisions
  • akiraohgaki's avatar
    akiraohgaki committed
    #include <QDebug>
    
    #include "../core/config.h"
    #include "../core/network.h"
    #include "../utility/file.h"
    #include "../utility/json.h"
    
    #include "xdgurl.h"
    
    namespace Handlers {
    
    XdgUrl::XdgUrl(const QString &xdgurl, Core::Config *appConfig, Core::Config *userConfig, Core::Network *asyncNetwork, QObject *parent) :
        QObject(parent), _xdgurl(xdgurl), _appConfig(appConfig), _userConfig(userConfig), _asyncNetwork(asyncNetwork)
    {
    }
    
    } // namespace Handlers