mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
34 lines
1.2 KiB
C++
34 lines
1.2 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_CVSLOGJOB_H
|
|
#define KDEVPLATFORM_PLUGIN_CVSLOGJOB_H
|
|
|
|
#include "cvsjob.h"
|
|
|
|
/**
|
|
* @author Robert Gruber <rgruber@users.sourceforge.net>
|
|
*/
|
|
class CvsLogJob : public CvsJob
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CvsLogJob(KDevelop::IPlugin* parent, KDevelop::OutputJob::OutputJobVerbosity verbosity = KDevelop::OutputJob::Verbose);
|
|
virtual ~CvsLogJob();
|
|
|
|
// Begin: KDevelop::VcsJob
|
|
virtual QVariant fetchResults();
|
|
// End: KDevelop::VcsJob
|
|
|
|
private:
|
|
void parseOutput(const QString& jobOutput, QList<QVariant>& events);
|
|
};
|
|
|
|
#endif
|