tagmodel.h 206 B

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