added notes to PORTING.

This commit is contained in:
crs 2002-09-02 17:14:21 +00:00
parent cc8272e258
commit 1038e290a3
1 changed files with 4 additions and 0 deletions

View File

@ -263,6 +263,7 @@ following these guidelines.
* All files should include the copyright and license notice
* Use tabs to indent
* Tabs are 4 columns
* Lines should not extend past the 80th column
* Open braces ({) go on same line as introducing statement
`for (i = 0; i < 10; ++i) {' not
for (i = 0; i < 10; ++i)
@ -281,6 +282,9 @@ following these guidelines.
* Use Qt style comments for extraction by doxygen
* Mark incomplete or buggy code with `FIXME'
- Other
* calls to log() should always be all on one line (even past column 80)
Class Relationships
-------------------