Files
codeql/swift/extractor/SwiftExtractorConfiguration.h
2022-04-28 16:39:27 +02:00

16 lines
424 B
C++

#pragma once
#include <string>
#include <vector>
namespace codeql {
struct SwiftExtractorConfiguration {
// The location for storing TRAP files to be imported by CodeQL engine.
std::string trapDir;
// The location for storing extracted source files.
std::string sourceArchiveDir;
// The arguments passed to the extractor. Used for debugging.
std::vector<std::string> frontendOptions;
};
} // namespace codeql