~ubuntu-branches/debian/stretch/gource/stretch

« back to all changes in this revision

Viewing changes to src/formats/bzr.h

  • Committer: Package Import Robot
  • Author(s): Andrew Caudwell
  • Date: 2014-04-15 16:30:17 UTC
  • mfrom: (1.2.15)
  • Revision ID: package-import@ubuntu.com-20140415163017-ucdr2josj1spzrga
Tags: 0.41-1
* New upstream release
* Made VCS URIs canonical
* Changed watch file to look at Github for releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#include "commitlog.h"
22
22
 
23
 
std::string gGourceBzrLogCommand();
24
 
 
25
23
class BazaarLog : public RCommitLog {
26
24
protected:
27
25
    bool parseCommit(RCommit& commit);
28
26
    BaseLog* generateLog(const std::string& dir);
29
27
public:
30
28
    BazaarLog(const std::string& logfile);
 
29
 
 
30
    static std::string logCommand();    
31
31
};
32
32
 
33
33
#endif