File indexing completed on 2024-05-05 04:41:01

0001 /*
0002     SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_PLUGIN_SVNINFOJOB_P_H
0008 #define KDEVPLATFORM_PLUGIN_SVNINFOJOB_P_H
0009 
0010 #include "svninternaljobbase.h"
0011 #include "svninfojob.h"
0012 
0013 class SvnInternalInfoJob : public SvnInternalJobBase
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit SvnInternalInfoJob( SvnJobBase* parent = nullptr );
0018     void setLocation( const QUrl& );
0019 
0020     QUrl location() const;
0021 Q_SIGNALS:
0022     void gotInfo( const SvnInfoHolder& );
0023 protected:
0024     void run(ThreadWeaver::JobPointer self, ThreadWeaver::Thread* thread) override;
0025 private:
0026     QUrl m_location;
0027 };
0028 
0029 
0030 #endif
0031