diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp index 30d5e1650d..0a16765214 100644 --- a/src/strgen/strgen.cpp +++ b/src/strgen/strgen.cpp @@ -228,7 +228,10 @@ struct HeaderFileWriter : HeaderWriter, FileWriter { HeaderFileWriter(const std::filesystem::path &path) : FileWriter("tmp.xxx", std::ofstream::out), real_path(path), prev(0), total_strings(0) { - this->output_stream << "/* This file is automatically generated. Do not modify */\n\n"; + this->output_stream << "/**\n"; + this->output_stream << " * @file strings.h This file contains IDs for all registered strings.\n"; + this->output_stream << " * @attention This file is automatically generated. Do not modify.\n"; + this->output_stream << " */\n\n"; this->output_stream << "#ifndef TABLE_STRINGS_H\n"; this->output_stream << "#define TABLE_STRINGS_H\n"; }