mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
/***************************************************************************
|
|
* Copyright 2008 Robert Gruber <rgruber@users.sourceforge.net> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KDEVPLATFORM_PLUGIN_CVSDIFFJOB_H
|
|
#define KDEVPLATFORM_PLUGIN_CVSDIFFJOB_H
|
|
|
|
#include "cvsjob.h"
|
|
|
|
#include <vcs/vcsdiff.h>
|
|
|
|
/**
|
|
* @author Robert Gruber <rgruber@users.sourceforge.net>
|
|
*/
|
|
class CvsDiffJob : public CvsJob
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CvsDiffJob(KDevelop::IPlugin* parent, KDevelop::OutputJob::OutputJobVerbosity verbosity = KDevelop::OutputJob::Verbose);
|
|
virtual ~CvsDiffJob();
|
|
|
|
// Begin: KDevelop::VcsJob
|
|
virtual QVariant fetchResults();
|
|
// End: KDevelop::VcsJob
|
|
|
|
private:
|
|
// Begin: KDevelop::DVcsJob
|
|
virtual void slotProcessError(QProcess::ProcessError error);
|
|
// End: KDevelop::DVcsJob
|
|
};
|
|
|
|
#endif
|