Ted Kremenek | 88f5cde | 2008-03-27 06:17:42 +0000 | [diff] [blame] | 1 | //===--- HTMLPathDiagnostic.h - HTML Diagnostics for Paths ------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the interface to create a HTMLPathDiagnostic object. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_CLANG_PATH_HTML_DIAGNOSTIC_H |
| 15 | #define LLVM_CLANG_PATH_HTML_DIAGNOSTIC_H |
| 16 | |
| 17 | #include <string> |
| 18 | |
| 19 | namespace clang { |
Ted Kremenek | 339b9c2 | 2008-04-17 22:31:54 +0000 | [diff] [blame^] | 20 | |
| 21 | class PathDiagnosticClient; |
| 22 | class Preprocessor; |
| 23 | class PreprocessorFactory; |
| 24 | |
Ted Kremenek | 88f5cde | 2008-03-27 06:17:42 +0000 | [diff] [blame] | 25 | |
Ted Kremenek | 339b9c2 | 2008-04-17 22:31:54 +0000 | [diff] [blame^] | 26 | PathDiagnosticClient* CreateHTMLDiagnosticClient(const std::string& prefix, |
| 27 | Preprocessor* PP, |
| 28 | PreprocessorFactory* PPF); |
Ted Kremenek | 88f5cde | 2008-03-27 06:17:42 +0000 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | #endif |