Skip to content

Coding Convention

Keshav Sharma edited this page Jun 4, 2018 · 1 revision

The coding convention to be followed is not that strict and most of it is just standard guidelines. Here are some of the guidelines that are being followed.

  1. For naming variables, use camelCase, first character must not be capitalized.
  2. All the pointers variable that are meant to store references should be named with a "ref_" prefix, for example ref_timelineModel. These pointer variables should never be initialized using new operator.
  3. For naming classes, use CamelCase, first character must be capitalized.
Clone this wiki locally