aboutsummaryrefslogtreecommitdiffstats
path: root/src/glslparser/glslastvisitor.cpp
blob: aa36d3b47c8a85656e9020491cbc68312b70b2b9 (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
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "glslastvisitor_p.h"

QT_BEGIN_NAMESPACE

using namespace GLSL;

Visitor::Visitor()
{
}

Visitor::~Visitor()
{
}

void Visitor::accept(AST *ast)
{
    if (ast)
        ast->accept(this);
}

QT_END_NAMESPACE