aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/config/sourcepos.cpp
blob: 6b8afce423dc3074c51df7edbaaa1c8404828de9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2016 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "sourcepos.h"

namespace qmt {

SourcePos::SourcePos()
{
}

SourcePos::SourcePos(int sourceId, int lineNumber, int columnNumber)
    : m_sourceId(sourceId),
      m_lineNumber(lineNumber),
      m_columnNumber(columnNumber)
{
}

} // namespace qmt