Blame view

Series.cpp 558 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
  #include "Series.h"
  
  Series::Series(qint64 position , Segment *parentSegment, Segment::Source source)
    : Segment(position, parentSegment, source)
  {
  }
  
  Series::~Series()
  {
  }
  
  void Series::read(const QJsonObject &json)
  {
    m_name = json["name"].toString();
    Segment::read(json);
  }
  
  void Series::write(QJsonObject &json) const
  {
    json["name"] = m_name;
    return Segment::write(json);
  }
  
  QString Series::display() const
  {
    return m_name;
  }
  
  QString Series::getName() const
  {
    return m_name;
  }
  
  void Series::setName(const QString &name)
  {
    m_name = name;
  }