You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/vcs/clearcase/clearcasefileinfoprovider.h

51 lines
1019 B

//
// C++ Interface: clearcasefileinfoprovider
//
// Description:
//
//
// Author: KDevelop Authors <kdevelop-devel@kdevelop.org>, (C) 2005
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef CLEARCASEFILEINFOPROVIDER_H
#define CLEARCASEFILEINFOPROVIDER_H
#include "clearcasepart.h"
#include "clearcasemanipulator.h"
/**
@author KDevelop Authors
*/
class ClearcaseFileinfoProvider : public KDevVCSFileInfoProvider
{
Q_OBJECT
public:
ClearcaseFileinfoProvider(ClearcasePart *parent);
virtual ~ClearcaseFileinfoProvider();
// -- Sync interface
const VCSFileInfoMap *status( const QString &dirPath ) ;
// -- Async interface for requesting data
bool requestStatus( const QString &dirPath, void *callerData, bool recursive = true, bool checkRepos = true );
private:
QStringList registeredEntryList() const;
private:
ClearcaseManipulator ccManipulator_;
QString curDirPath_;
VCSFileInfoMap* vcsInfo_;
ClearcasePart* kdevVCS_;
};
#endif