Changes between Version 39 and Version 40 of code
- Timestamp:
- Oct 6, 2008, 5:10:13 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code
v39 v40 5 5 6 6 === Guides and Standards === 7 * [wiki:c++_styleguide Style Sheet] - Writing consistent code according to a style definition. 7 * [wiki:c++_styleguide Styleguide] - Writing consistent code according to a style definition. 8 * [wiki:PerformanceTips Performance] - Make fast and efficient code. 8 9 * [wiki:Doxygen Documenting] - How to write documentation that can be read by Doxygen for HTML view. 9 10 * [wiki:Error_handling Error handling] - What to do when facing a error situation? 10 * [wiki: PerformanceTips Fast Code] - make fast and efficient code.11 * [wiki:howto/STL Standard C++ library] - Have a look at the standard C++ library, strings and STL containers are very useful 11 12 12 13 === Coding Tools === 13 * [wiki:LinuxCodingTools Open Source Tools] - Purposed coding environment for Linux with which we also support your problems. 14 * [wiki:SVN] - Our revision control tool. You should know how to use it 15 * [wiki:CMake] - Our build tool (forget about makefiles) 16 * [wiki:KDevelop3] - An open source IDE 17 * [wiki:Doxygen] - Autogenerates an API 18 * [wiki:LinuxCodingTools Open Source Tools] - A list of other development tools 14 19 15 === Orxonox Framework === 16 * [wiki:ModulesDescription] - Description of the existing Orxonox code 20 === Framework === 21 * [wiki:ModulesDescription Modules] - Get an overview of our Framework 22 * [wiki:Documentation] - A documentation of all our libraries and classes 23 * [wiki:Libraries] - An overview of the external libraries 24 * [doxygen:index.html API Reference] - An automatically generated reference of classes, functions, macros and other stuff 25 * [wiki:HowTo_coding HowTo] - This page covers several topics and explains how to do things 26 * [wiki:FAQ_coding FAQ] - Check out the FAQ to get answers on frequent questions 17 27 18 28 === Misc === 19 * [wiki:ProgramerFAQ Programers FAQ] - The questions, the answers20 29 * [wiki:DevelopmentResources Links] - A collection of useful stuff. 21 30 … … 26 35 1. '''Planning''': In this phase, the development goals for the next cycle are stated. 27 36 2. '''Implementation''': The plan is being implemented in code. 28 3. '''Review''': A code freeze is initiated and the work is being analyzed to ensure ,that the goals set in the planning phase have been reached. If not, the implementation phase has to be repeated.37 3. '''Review''': A code freeze is initiated and the work is being analyzed to ensure that the goals set in the planning phase have been reached. If not, the implementation phase has to be repeated. 29 38 30 The development process itself can be split into different stages which are repeated asnecessary:39 The development process itself can be split into different stages which are repeated if necessary: 31 40 1. Finding ideas & planning 32 41 2. Frameworking