aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/controller/selection.cpp
blob: 7a0ad6ced49f10172df14884e605c35b9831ae25 (plain)
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
// Copyright (C) 2016 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "selection.h"

namespace qmt {

Selection::Selection()
{
}

Selection::~Selection()
{
}

void Selection::setIndices(const QList<qmt::Selection::Index> &indices)
{
    m_indices = indices;
}

void Selection::clear()
{
    m_indices.clear();
}

void Selection::append(const Index &index)
{
    m_indices.append(index);
}

void Selection::append(const Uid &elementKey, const Uid &ownerKey)
{
    append(Index(elementKey, ownerKey));
}

} // namespace qmt