#ifndef TOOLS_GN_OUTPUT_FILE_H_
#define TOOLS_GN_OUTPUT_FILE_H_
#include <stddef.h>
#include <string>
class BuildSettings;
class SourceDir;
class SourceFile;
class OutputFile {
public:
OutputFile() = default;
explicit OutputFile(std::string&& v);
explicit OutputFile(const std::string& v);
OutputFile(const BuildSettings* build_settings,
const SourceFile& source_file);
std::string& value() { return value_; }
const std::string& value() const { return value_; }
SourceFile AsSourceFile(const BuildSettings* build_settings) const;
SourceDir AsSourceDir(const BuildSettings* build_settings) const;
bool operator==(const OutputFile& other) const {
return value_ == other.value_;
}
bool operator!=(const OutputFile& other) const {
return value_ != other.value_;
}
bool operator<(const OutputFile& other) const {
return value_ < other.value_;
}
private:
std::string value_;
};
namespace std {
template <>
struct hash<OutputFile> {
std::size_t operator()(const OutputFile& v) const {
hash<std::string> h;
return h(v.value());
}
};
}
#endif