aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/designercore/model/internalnodeabstractproperty.cpp
blob: 6dff33436e45f393ab42e7ba6a8054ac0b5325b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "internalnodeabstractproperty.h"
#include "internalnode_p.h"

namespace QmlDesigner {
namespace Internal {

InternalNodeAbstractProperty::InternalNodeAbstractProperty(const PropertyName &name,
                                                           const InternalNode::Pointer &propertyOwner,
                                                           PropertyType propertyType)
    : InternalProperty(name, propertyOwner, propertyType)
{
}

bool InternalNodeAbstractProperty::isValid() const
{
    return InternalProperty::isValid() && isNodeAbstractProperty();
}

} // namespace Internal
} // namespace QmlDesigner