2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2010-12-15 15:11:59 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2010-12-15 15:11:59 +01:00
|
|
|
|
2013-03-27 18:54:03 +01:00
|
|
|
#include <cplusplus/NameVisitor.h>
|
2010-12-15 15:11:59 +01:00
|
|
|
|
|
|
|
|
namespace CPlusPlus {
|
|
|
|
|
|
|
|
|
|
class CPLUSPLUS_EXPORT SymbolNameVisitor : public CPlusPlus::NameVisitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SymbolNameVisitor();
|
|
|
|
|
|
|
|
|
|
void accept(Symbol *symbol);
|
|
|
|
|
|
|
|
|
|
using NameVisitor::accept;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Symbol *_symbol;
|
|
|
|
|
};
|
|
|
|
|
|
2011-02-04 09:52:39 +01:00
|
|
|
} // namespace CPlusPlus
|