Changes between Version 7 and Version 8 of Developer/Guidelines

Show
Ignore:
Timestamp:
05/22/09 17:25:27 (4 years ago)
Author:
mloskot
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Developer/Guidelines

    v7 v8  
    55This document outlines guidelines and policies that should be followed in the process of development of [/ggl Generic Geometry Library] (GGL). 
    66 
    7 It is aimed to propose the GGL to the collection of [http://www.boost.org/doc/libs/ Boost C++ Libraries], so it is intentional to closely follow Boost conventions. As such, this document is based on [http://www.boost.org/development/requirements.html Boost Library Requirements and Guidelines] and [http://www.boost.org/development/header.html Boost Header Policy]. 
    8  
     7It is aimed to propose the GGL to the collection of [http://www.boost.org/doc/libs/ Boost C++ Libraries], so it is intentional to closely follow Boost conventions. As such, this document is based on [http://www.boost.org/development/requirements.html Boost Library Requirements and Guidelines] and [http://www.boost.org/development/header.html Boost Header Policy]. In case of doubts in any subject, refer to Boost guidelines. 
    98 
    109== Headers include order == 
     
    4645= Formatting = 
    4746 
     47 * Use spaces in all source files. Strictly, no tabs. 
    4848 * Prefered line length is 80 characters, however maximum is 100 characters in line. 
    4949 * Do not indent namespace blocks. 
     
    109109 
    110110}}} 
     111 
     112----- 
     113 
     114[wiki:Developer Developer]