gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Minor updates in the doc
0 2 0
default
2 files changed with 11 insertions and 3 deletions:
↑ Collapse diff ↑
Ignore white space 6 line context
... ...
@@ -35,13 +35,13 @@
35 35
\code
36 36
XmlReader
37 37
\endcode
38 38

	
39 39

	
40 40
\warning In some cases we diverge from these rules.
41
This primary done because STL uses different naming convention and
41
This is primary done because STL uses different naming convention and
42 42
in certain cases
43 43
it is beneficial to provide STL compatible interface.
44 44

	
45 45
\subsection cs-files File Names
46 46

	
47 47
The header file names should look like the following.
... ...
@@ -92,12 +92,20 @@
92 92
The names of class and instance member variables and auto variables (=variables used locally in methods) should look like the following.
93 93

	
94 94
\code
95 95
all_lower_case_with_underscores 
96 96
\endcode
97 97

	
98
\subsection pri-loc-var Private member variables
99

	
100
Private member variables should start with underscore
101

	
102
\code
103
_start_with_underscores
104
\endcode
105

	
98 106
\subsection cs-excep Exceptions
99 107

	
100 108
When writing exceptions please comply the following naming conventions.
101 109

	
102 110
\code
103 111
ClassNameEndsWithException
Ignore white space 12 line context
... ...
@@ -565,14 +565,14 @@
565 565

	
566 566
@defgroup demos Demo programs
567 567

	
568 568
Some demo programs are listed here. Their full source codes can be found in
569 569
the \c demo subdirectory of the source tree.
570 570

	
571
The standard compilation procedure (<tt>./configure;make</tt>) will compile
572
them, as well. 
571
It order to compile them, use <tt>--enable-demo</tt> configure option when
572
build the library.
573 573

	
574 574
*/
575 575

	
576 576
/**
577 577
@defgroup tools Standalone utility applications
578 578

	
0 comments (0 inline)