gitreflog.h 206 B

12345678910111213141516
  1. #ifndef GITREFLOG_H
  2. #define GITREFLOG_H
  3. struct git_reflog;
  4. class GitRepository;
  5. class GitReflog
  6. {
  7. public:
  8. GitReflog(GitRepository* repo);
  9. private:
  10. git_reflog* m_reflog;
  11. };
  12. #endif // GITREFLOG_H