Do you add information to the top of each .hpp/.cpp file? - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-08T04:14:40Z
http://stackoverflow.com/feeds/question/318835
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file
4
Do you add information to the top of each .hpp/.cpp file?
Rob
2008-11-25T20:59:33Z
2008-11-26T04:09:31Z
<p>When creating a new C++ header/source file, what information do you add to the top? For example, do you add the date, your name, a description of the file, etc.? Do you use a structured format for this information?</p>
<p>e.g.</p>
<pre><code>// Foo.cpp - Implementation of the Foo class
// Date: 2008-25-11
// Created by: John Smith
</code></pre>
<p>One team I know embeds CVS commit messages to the foot of each file, but I'm not sure I want to go this far...</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/318851#318851
1
Answer by JaredPar for Do you add information to the top of each .hpp/.cpp file?
JaredPar
2008-11-25T21:02:40Z
2008-11-25T21:02:40Z
<p>I don't embed the date because it's redundant. If someone wants to know the date a file was created don't trust the author, trust your source control system. It should be the defintive answer for the date of creation. </p>
<p>I'm definately not against embedding check in messages though. Those are pretty useful. </p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/318858#318858
1
Answer by Jasper Bekkers for Do you add information to the top of each .hpp/.cpp file?
Jasper Bekkers
2008-11-25T21:04:46Z
2008-11-25T21:04:46Z
<p>Don't. Most of the stuff can be retrieved from the versioning system when needed so it's redundant to add. That would leave you with the description of the content of the file but that's part of the class documentation most of the time (or at least the documentation of the specific type). </p>
<p>I don't do any of those, but then again, I don't like the cruft.</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/318859#318859
2
Answer by Chris Charabaruk for Do you add information to the top of each .hpp/.cpp file?
Chris Charabaruk
2008-11-25T21:04:49Z
2008-11-26T01:38:38Z
<p>I include the file name, a brief description of the file's purpose, and a $Id$ tag for CVS or Subversion purposes. File creator and date of creation can be found by checking the repository, so it's not needed.</p>
<p>File name is included because depending on what you're using to edit the file, that might not be entirely apparent when you're editing it. The description can be used to determine if a bit of code belongs in the file, or if it should be moved to another. And of course, $Id$ gives you last change time, and last editor.</p>
<p>Embedding check-in messages is only useful when the message is useful, and only if the file is updated once and a while. Including every message will simply bloat the file to the point where there's more comments describing changes than there is actual code. Best to leave that to the repository as well; often it's only a short command line to get the file's check-in log.</p>
<p>If you're stuck with a revision control system that can't keep history for moves and copies, in that case just reference the original file and its version number. Of course, if you're using a system that was created sometime in this century and not the last, that shouldn't be an issue.</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/318862#318862
2
Answer by Aardvark for Do you add information to the top of each .hpp/.cpp file?
Aardvark
2008-11-25T21:05:20Z
2008-11-25T21:05:20Z
<p>We're required to put copyright information at the top of each file. I think dates, authors, and the name of the file is a waste of time.</p>
<p>We also have our source control system append check-in comments at the <strong><em>bottom</em></strong> of each file. I initially hated the change log, but over time I learned to like it. It really helps when merging changes.</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/318867#318867
1
Answer by luke for Do you add information to the top of each .hpp/.cpp file?
luke
2008-11-25T21:06:43Z
2008-11-25T21:06:43Z
<p>If you're using <a href="http://www.nongnu.org/cvs/" rel="nofollow">CVS</a>, check out it's <a href="http://ximbiot.com/cvs/manual/cvs-1.11.21/cvs_12.html" rel="nofollow">keyword substitutions</a>. They will help automate embeding that information.</p>
<p>Personally I stick this at the top of all of my source files:</p>
<pre><code>// $Id$
</code></pre>
<p>Other informative comments I embed to be parsed with <a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">Doxygen</a>, if they relate to something specific (the file, the class, a type, etc).</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/318872#318872
0
Answer by Marcin for Do you add information to the top of each .hpp/.cpp file?
Marcin
2008-11-25T21:08:05Z
2008-11-25T21:08:05Z
<p>We use our RCS to automatically stamp the following on the file:</p>
<p>Copyright,</p>
<p>RCS file name,</p>
<p>Date modified,</p>
<p>Author of last change,</p>
<p>RCS revision number</p>
<p>I think this is very convenient. I really like having the file name automatically populated in each file, because it makes searching the solution for files very quick.</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/318881#318881
8
Answer by bradheintz for Do you add information to the top of each .hpp/.cpp file?
bradheintz
2008-11-25T21:11:31Z
2008-11-26T00:42:15Z
<p>Information about who created a file and when and who edited it and when is all in source control. If your team has good practices around check-in comments, then you'll know the reasons for each change too. No need for comments for that stuff.</p>
<p>I think it's 100% legit - wise, even - to put a comment block, as long as is necessary, explaining the purpose of the class/module. When the next person goes to change it, they'll have a better idea of the overall vision and whether this file is the appropriate place for their change.</p>
<p>Some shops put copyright notices and other legal folderol in source file comments. This strikes me as just silly - if your (non-OSS) source code has made it onto someone else's servers without your knowledge or permission, a copyright notice is probably not going to deter them from doing anything with it. IANAL, YMMV.</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/318973#318973
0
Answer by letseatlunch for Do you add information to the top of each .hpp/.cpp file?
letseatlunch
2008-11-25T21:38:13Z
2008-11-25T21:38:13Z
<p>i generally only add any "comment info" when...
i don't think i'll remember or its not obvious what something is doing
or
when i release the source code and i actually want others to be able to use/learn from it.</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/319098#319098
0
Answer by EndangeredMassa for Do you add information to the top of each .hpp/.cpp file?
EndangeredMassa
2008-11-25T22:19:04Z
2008-11-25T22:19:04Z
<p>I usually include a description of the purpose of the code found in that file. Everything else seems to be handled elsewhere: dates and comments in source control, etc.</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/319111#319111
2
Answer by Ben Collins for Do you add information to the top of each .hpp/.cpp file?
Ben Collins
2008-11-25T22:25:37Z
2008-11-25T22:25:37Z
<p>Here: <a href="http://stackoverflow.com/questions/134188/what-to-write-in-the-header-comments-of-a-code-file#134249">134249</a> </p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/319143#319143
0
Answer by thursdaysgeek for Do you add information to the top of each .hpp/.cpp file?
thursdaysgeek
2008-11-25T22:39:00Z
2008-11-25T22:39:00Z
<p>Everyone is saying that your source control will have the date and programmer info, but that isn't always true. I worked in a shop that used Source Safe, and it was fine until someone decided to move a file to a different location. At that point, it essentially became a new file according to SS, and no previous history existed.</p>
<p>Perhaps because of that, the programmer name and date were automatically added to the comment section at the top of the file. When there got to be more than about 10 entries, we'd strip out all of the middle ones, leaving only the original date and author, and the current information.</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/319150#319150
0
Answer by andreas buykx for Do you add information to the top of each .hpp/.cpp file?
andreas buykx
2008-11-25T22:41:09Z
2008-11-25T22:41:09Z
<p>A copyright statement for my client ;-)</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/319505#319505
0
Answer by Lodle for Do you add information to the top of each .hpp/.cpp file?
Lodle
2008-11-26T01:34:25Z
2008-11-26T01:34:25Z
<p>This is what i normaly put at the top of files:</p>
<pre><code>///////////// Copyright © 2008 DesuraNET. All rights reserved. /////////////
//
// Project : [project name]
// File : [file name]
// Description :
// [TODO: Write the purpose of ... ]
//
// Created On: 11/12/2008 2:24:07 PM
// Created By: [name] <mailto:[email]>
////////////////////////////////////////////////////////////////////////////
</code></pre>
<p>and i set up a macro in vis to do add it in and fill in default info when i make a new file</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/319575#319575
0
Answer by John Dibling for Do you add information to the top of each .hpp/.cpp file?
John Dibling
2008-11-26T02:23:16Z
2008-11-26T02:23:16Z
<p>We use MSVC & VSS and have a plugin that adds any comment you specifiy at check-in to the file that's being checked in as a comment. It's very convinient to look at the top of the CPP file to find out the bug-tracking ticket number that a change was made for.</p>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/319637#319637
1
Answer by Steve Fallows for Do you add information to the top of each .hpp/.cpp file?
Steve Fallows
2008-11-26T03:07:52Z
2008-11-26T03:07:52Z
<p>I used to like putting version control keywords in the header of file. But recovered from that affliction. :) For two reasons:</p>
<ol>
<li>Nobody put comments in that are of any use. You always wind up looking at the diffs reported by the version control system.</li>
<li>It creates a nightmare in trying to diff large filesets because the keywords create differences that are the only difference in the file.</li>
</ol>
http://stackoverflow.com/questions/318835/do-you-add-information-to-the-top-of-each-hpp-cpp-file/319724#319724
0
Answer by vsync for Do you add information to the top of each .hpp/.cpp file?
vsync
2008-11-26T04:09:31Z
2008-11-26T04:09:31Z
<p>I use Subversion.
Here's what I like to put near to the top.</p>
<pre><code>$Id$
$HeadURL$
</code></pre>
<p>That substitutes the revision, last editor, and then the location of the file in the repository. Although I always work from working copies, this lets me print/email a file and look at it later to know exactly where it came from. <code>$HeadURL$</code> especially is nice because it tells what project and branch the file is in and how to get to it (nice with larger nested subpackages and the like).</p>
<p>Agreed on the uselessness of big manual comment blocks — although docstrings/Javadocs are recommended — and on automatically appending the commit log.</p>
<p>It sounds like some of you are using terrible VCSes, if you are getting diffs or merge conflicts generated by the keywords themselves. <a href="http://wordaligned.org/articles/keyword-substitution-just-say-no#feedback-152" rel="nofollow">Subversion handles it well.</a></p>