forked from qt-creator/qt-creator
36 lines
821 B
C
36 lines
821 B
C
|
|
#ifndef CPLUSPLUS_CPLUSPLUS_H
|
||
|
|
#define CPLUSPLUS_CPLUSPLUS_H
|
||
|
|
|
||
|
|
#include "AST.h"
|
||
|
|
#include "ASTMatcher.h"
|
||
|
|
#include "ASTPatternBuilder.h"
|
||
|
|
#include "ASTVisitor.h"
|
||
|
|
#include "ASTfwd.h"
|
||
|
|
#include "Bind.h"
|
||
|
|
#include "CPlusPlusForwardDeclarations.h"
|
||
|
|
#include "Control.h"
|
||
|
|
#include "CoreTypes.h"
|
||
|
|
#include "DiagnosticClient.h"
|
||
|
|
#include "FullySpecifiedType.h"
|
||
|
|
#include "Lexer.h"
|
||
|
|
#include "LiteralTable.h"
|
||
|
|
#include "Literals.h"
|
||
|
|
#include "MemoryPool.h"
|
||
|
|
#include "Name.h"
|
||
|
|
#include "NameVisitor.h"
|
||
|
|
#include "Names.h"
|
||
|
|
#include "ObjectiveCTypeQualifiers.h"
|
||
|
|
#include "Parser.h"
|
||
|
|
#include "QtContextKeywords.h"
|
||
|
|
#include "Scope.h"
|
||
|
|
#include "Symbol.h"
|
||
|
|
#include "SymbolVisitor.h"
|
||
|
|
#include "Symbols.h"
|
||
|
|
#include "Token.h"
|
||
|
|
#include "TranslationUnit.h"
|
||
|
|
#include "Type.h"
|
||
|
|
#include "TypeMatcher.h"
|
||
|
|
#include "TypeVisitor.h"
|
||
|
|
|
||
|
|
#endif // CPLUSPLUS_CPLUSPLUS_H
|