File: CodingStandar.txt

package info (click to toggle)
eq10q 2.2~repack0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,344 kB
  • sloc: cpp: 8,036; ansic: 1,776; makefile: 6
file content (27 lines) | stat: -rw-r--r-- 520 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Coding standrd
============================================
Object declaration:
	ObjectClassType FooObject;
	
Method declaration:
	void thisIsMethod();
	
Data members of an object
	int m_iDataMember;
	float m_fDataNumber;
	
Pointer to standard type
	int *ptr_iPointerToInterger;
	float *ptr_fFoo;
	
Pointer to object
	ObjectClassType *ptr_MyFooObjectPointer;
	
Pointer to data member
	int *m_ptr_iIntegerPointer;
	ObjectClassType *m_ptr_MyFooPointer;
	

TODO declaration:
///TODO: Description