[ValueTracking] Remove unused matchSelectPattern optional argument. NFCI.
[llvm-core.git] / include / llvm / WindowsResource / ResourceProcessor.h
blob4e99c05f4cd98259bff94b80714a866d61cd1f1f
1 //===-- ResourceProcessor.h -------------------------------------*- C++-*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===---------------------------------------------------------------------===//
9 #ifndef LLVM_INCLUDE_LLVM_SUPPORT_WINDOWS_RESOURCE_PROCESSOR_H
10 #define LLVM_INCLUDE_LLVM_SUPPORT_WINDOWS_RESOURCE_PROCESSOR_H
12 #include "llvm/ADT/StringMap.h"
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/Support/Error.h"
15 #include "llvm/Support/raw_ostream.h"
17 #include <memory>
18 #include <vector>
21 namespace llvm {
23 class WindowsResourceProcessor {
24 public:
25 using PathType = SmallVector<char, 64>;
27 WindowsResourceProcessor() {}
29 void addDefine(StringRef Key, StringRef Value = StringRef()) {
30 PreprocessorDefines.emplace_back(Key, Value);
32 void addInclude(const PathType &IncludePath) {
33 IncludeList.push_back(IncludePath);
35 void setVerbose(bool Verbose) { IsVerbose = Verbose; }
36 void setNullAtEnd(bool NullAtEnd) { AppendNull = NullAtEnd; }
38 Error process(StringRef InputData,
39 std::unique_ptr<raw_fd_ostream> OutputStream);
41 private:
42 StringRef InputData;
43 std::vector<PathType> IncludeList;
44 std::vector<std::pair<StringRef, StringRef>> PreprocessorDefines;
45 bool IsVerbose, AppendNull;
50 #endif