-
Notifications
You must be signed in to change notification settings - Fork 0
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.
- For naming variables, use camelCase, first character must not be capitalized.
- 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.
- For naming classes, use CamelCase, first character must be capitalized.