taglistmodel.h 246 B

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