File indexing completed on 2024-04-28 15:52:42

0001 /*
0002     SPDX-FileCopyrightText: 2009 Milian Wolff <mail@milianw.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only
0005 */
0006 
0007 #ifndef INCLUDENAVIGATIONCONTEXT_H
0008 #define INCLUDENAVIGATIONCONTEXT_H
0009 
0010 #include <language/duchain/navigation/abstractincludenavigationcontext.h>
0011 
0012 namespace Php {
0013 
0014 class IncludeNavigationContext : public KDevelop::AbstractIncludeNavigationContext {
0015 public:
0016     IncludeNavigationContext(const KDevelop::IncludeItem& item, KDevelop::TopDUContextPointer topContext);
0017 };
0018 
0019 }
0020 
0021 #endif // INCLUDENAVIGATIONCONTEXT_H