Blame view

Season.cpp 619 Bytes
3f2992b2c   bostx   V1.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  #include "Season.h"
  
  Season::Season(Segment *parentSegment)
    : Segment(parentSegment)
  {
  }
  
  Season::Season(int number, Segment *parentSegment, qint64 position, Segment::Source source)
    : Segment(position, parentSegment, source),
      m_number(number)
  {
  }
  
  Season::~Season()
  {
  }
  
  void Season::read(const QJsonObject &json)
  {
    m_number = json["nb"].toInt();
    Segment::read(json);
  }
  
  void Season::write(QJsonObject &json) const
  {
    json["nb"] = m_number;
    Segment::write(json);
  }
  
  QString Season::display() const
  {
    return "Season " + QString::number(m_number);
  }
  
  int Season::getNumber() const
  {
    return m_number;
  }