Giter Site home page Giter Site logo

lightingbolt's Introduction

Code Conventions

  1. Structure

  • Header: CamelCase.hpp
  • Source: CamelCase.cpp
  • Header and Source of the same name always in the same directory
  • directories give structure the project
  • namespace conform with the directory structure
  • Use pre-declarations instead of includes whenever possible
  1. Documentation

  • Doxygen comments in the Header at public attributes/methods:
/// \brief			always write a brief describtion
/// \details		if there is more to say
/// \param [in]		if parameter is only read inside method
/// \param [out]	if parameter is only written inside method
/// \param [inout]	the parameter is accessed with read write access
/// \return
  • Member variables and constants: ///< short comment at the end of the line
  • *.cpp contains standard comments: // some comment
  1. Code

  • Everything in english

  • Functions: kleinCamelCase

  • Types: CamelCase

  • Variables: smallCamelCase

    • Scope-prefix:
'm_' Member of a class (Example: m_myInt)
'g_' Global variable
'_' Function parameter
* No type prefixes
  • Constants: BIG_LETTERS

lightingbolt's People

Contributors

wendesil avatar jojendersie avatar nonoid avatar fuerchter avatar

Watchers

James Cloos avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.