commitgraphpoint.cpp 385 B

123456789101112131415161718
  1. #include "commitgraphpoint.h"
  2. CommitGraphPoint::CommitGraphPoint(const GitOid& commitOid, QObject* parent) : GraphPoint(parent)
  3. ,m_commitOid(commitOid)
  4. {
  5. }
  6. CommitGraphPoint::CommitGraphPoint(const GitOid &commitOid, int x, int y, const QString &color, QObject *parent) : GraphPoint(x, y, color, parent)
  7. ,m_commitOid(commitOid)
  8. {
  9. }
  10. CommitGraphPoint::~CommitGraphPoint()
  11. {
  12. }