kde-extraapps/kdevplatform/plugins/cvs/cvslogjob.h
2015-07-26 14:23:17 +03:00

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