~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to vcs/clearcase/clearcasefileinfoprovider.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
// C++ Interface: clearcasefileinfoprovider
3
 
//
4
 
// Description:
5
 
//
6
 
//
7
 
// Author: KDevelop Authors <kdevelop-devel@kdevelop.org>, (C) 2005
8
 
//
9
 
// Copyright: See COPYING file that comes with this distribution
10
 
//
11
 
//
12
 
#ifndef CLEARCASEFILEINFOPROVIDER_H
13
 
#define CLEARCASEFILEINFOPROVIDER_H
14
 
 
15
 
#include "clearcasepart.h"
16
 
#include "clearcasemanipulator.h"
17
 
 
18
 
 
19
 
/**
20
 
@author KDevelop Authors
21
 
*/
22
 
class ClearcaseFileinfoProvider : public KDevVCSFileInfoProvider
23
 
{
24
 
  Q_OBJECT
25
 
public:
26
 
    ClearcaseFileinfoProvider(ClearcasePart *parent);
27
 
 
28
 
    virtual ~ClearcaseFileinfoProvider();
29
 
 
30
 
    // -- Sync interface
31
 
    const VCSFileInfoMap *status( const QString &dirPath ) ;
32
 
 
33
 
    // -- Async interface for requesting data
34
 
    bool requestStatus( const QString &dirPath, void *callerData, bool recursive = true, bool checkRepos = true );
35
 
 
36
 
 
37
 
private:
38
 
 
39
 
    QStringList registeredEntryList() const;
40
 
 
41
 
 
42
 
private:
43
 
    ClearcaseManipulator ccManipulator_;
44
 
    QString curDirPath_;
45
 
    VCSFileInfoMap* vcsInfo_;
46
 
    ClearcasePart* kdevVCS_;
47
 
 
48
 
};
49
 
 
50
 
#endif