~ubuntu-branches/ubuntu/quantal/kdevplatform/quantal-proposed

« back to all changes in this revision

Viewing changes to vcs/interfaces/idistributedversioncontrol.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-24 00:06:18 UTC
  • mfrom: (0.3.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101024000618-7otebin77mfcmt3b
Tags: 1.1.0-0ubuntu1
* New upstream release
  - Bump build-dependencies
  - Build against libboost-serialization1.42-dev
  - Update kdevplatform1-libs.install
  - Update kdevplatform-dev.install

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
     */
65
65
    virtual VcsJob* pull(const VcsLocation& localOrRepoLocationSrc,
66
66
                         const KUrl& localRepositoryLocation) = 0;
67
 
 
68
 
    /**
69
 
     * Reset current HEAD to the specified state.
70
 
     * 
71
 
     * @param repository local repository.
72
 
     * @param args dvcs-reset arguments.
73
 
     * @param files filelist for resetting.
74
 
     */
75
 
    virtual VcsJob* reset(const KUrl& repository, 
76
 
                          const QStringList &args, const KUrl::List& files) = 0;
77
67
};
78
68
 
79
69
}
80
70
 
81
 
KDEV_DECLARE_EXTENSION_INTERFACE_NS( KDevelop, IDistributedVersionControl, "org.kdevelop.IDistributedVersionControl" )
82
71
Q_DECLARE_INTERFACE( KDevelop::IDistributedVersionControl, "org.kdevelop.IDistributedVersionControl" )
83
72
 
84
73
#endif