THRIFT-1281. compiler: add @generated to the docblock
authorBryan Duxbury <bryanduxbury@apache.org>
Wed, 24 Aug 2011 00:28:18 +0000 (00:28 +0000)
committerBryan Duxbury <bryanduxbury@apache.org>
Wed, 24 Aug 2011 00:28:18 +0000 (00:28 +0000)
Patch: Bill Fumerola

git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1160943 13f79535-47bb-0310-9956-ffa450edef68

compiler/cpp/src/generate/t_oop_generator.h
compiler/cpp/src/generate/t_php_generator.cc

index 5530af1..20b73b2 100644 (file)
@@ -70,6 +70,7 @@ class t_oop_generator : public t_generator {
       " * Autogenerated by Thrift Compiler (" + THRIFT_VERSION + ")\n" +
       " *\n" +
       " * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING\n" +
+      " *  @generated\n" +
       " */\n";
   }
 };
index 414cffc..2ca1d6f 100644 (file)
@@ -639,7 +639,8 @@ void t_php_generator::generate_php_struct_definition(ofstream& out,
     string f_struct = program_name_+"."+(tstruct->get_name())+".php";
     string f_struct_name = package_dir_+f_struct;
     autoload_out.open(f_struct_name.c_str());
-    autoload_out << "<?php" << endl;
+    autoload_out << "<?php" << endl
+      << "/**" << endl << " *  @generated" << endl << " */" << endl;
     _generate_php_struct_definition(autoload_out, tstruct, is_exception);
     autoload_out << endl << "?>" << endl;
     autoload_out.close();
@@ -1381,7 +1382,8 @@ void t_php_generator::generate_service_client(t_service* tservice) {
     string f_struct = program_name_+"."+(tservice->get_name())+".client.php";
     string f_struct_name = package_dir_+f_struct;
     autoload_out.open(f_struct_name.c_str());
-    autoload_out << "<?php" << endl;
+    autoload_out << "<?php" << endl
+      << "/**" << endl << " *  @generated" << endl << " */" << endl;
     _generate_service_client(autoload_out, tservice);
     autoload_out << endl << "?>" << endl;
     autoload_out.close();