branchlistmodel.h 267 B

1234567891011121314
  1. #ifndef BRANCHLISTMODEL_H
  2. #define BRANCHLISTMODEL_H
  3. #include <universallistmodel.h>
  4. #include <gitbranch.h>
  5. class BranchListModel : public UniversalListModel<GitBranch>
  6. {
  7. Q_OBJECT
  8. public:
  9. BranchListModel(QObject *parent = 0);
  10. };
  11. #endif // BRANCHLISTMODEL_H