//===--- RefactoringActionRule.h - Clang refactoring library -------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_TOOLING_REFACTORING_REFACTORINGACTIONRULE_H #define LLVM_CLANG_TOOLING_REFACTORING_REFACTORINGACTIONRULE_H #include "clang/Basic/LLVM.h" #include "llvm/ADT/StringRef.h" namespace clang { namespace tooling { class RefactoringOptionVisitor; class RefactoringResultConsumer; class RefactoringRuleContext; struct RefactoringDescriptor { … }; /// A common refactoring action rule interface that defines the 'invoke' /// function that performs the refactoring operation (either fully or /// partially). class RefactoringActionRuleBase { … }; /// A refactoring action rule is a wrapper class around a specific refactoring /// action rule (SourceChangeRefactoringRule, etc) that, in addition to invoking /// the action, describes the requirements that determine when the action can be /// initiated. class RefactoringActionRule : public RefactoringActionRuleBase { … }; } // end namespace tooling } // end namespace clang #endif // LLVM_CLANG_TOOLING_REFACTORING_REFACTORINGACTIONRULE_H