Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
glslastvisitor.cpp
Go to the documentation of this file.
1// Copyright (C) 2021 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
5
7
8using namespace GLSL;
9
10Visitor::Visitor()
11{
12}
13
14Visitor::~Visitor()
15{
16}
17
18void Visitor::accept(AST *ast)
19{
20 if (ast)
21 ast->accept(this);
22}
23
24QT_END_NAMESPACE