//===--- CommentCommandTraits.h - Comment command properties ----*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// // // This file defines the class that provides information about comment // commands. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_AST_COMMENTCOMMANDTRAITS_H #define LLVM_CLANG_AST_COMMENTCOMMANDTRAITS_H #include "clang/Basic/CommentOptions.h" #include "clang/Basic/LLVM.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/Allocator.h" #include "llvm/Support/ErrorHandling.h" namespace clang { namespace comments { /// Information about a single command. /// /// When reordering, adding or removing members please update the corresponding /// TableGen backend. struct CommandInfo { … }; /// This class provides information about commands that can be used /// in comments. class CommandTraits { … }; } // end namespace comments } // end namespace clang #endif