1
edit
Changes
no edit summary
= ASOS Brigade - Team 6 =
= Project Overview =
== 1.2 Class Overview ==
This is incomplete!
Email: wfchen@learn.senecac.on.ca
== 2.2 Group Members==
=== Wen Fang Chen===
IRC Username: Gwen2009
Email: wfchen@learn.senecac.on.ca
=== Yong Hong===
IRC Username: Yong_Clicker
Email: rod1205@hotmail.com
=== Taehoon Kim===
IRC Username: hoongoon
Blog: http://hoonkoon.blogspot.com/
Email: hoongoon86@hotmail.com
=== Chi-Lea Tran===
IRC Username: ctran13
Email: ctran13@learn.senecac.on.ca
=== Victor Tran===
IRC Username: victran
Email: victor.vy.tran@gmail.com
IRC Username: cwang84
Email: cwang84@learn.senecac.on.ca
=== Yong Xue === IRC Username: yxue11 Section: C Blog: http://opp344-yxue.blogspot.com/ Email: yxue11@learn.senecac.on.ca === Shun Yao Zhang===
IRC Username: DownWind
Email: syzhang4@learn.senecac.on.ca
= 4.1 File headings0 Conventions and Styles =
<pre>
/*
*/
</pre>
== 4.2 Function Comments ==
<pre>
/*
}
</pre>
== 4.3 Inline Comments Inline comments should be used to clarify what exactly something is doing, or to leave a note for yourself or others regarding the code in that general area. Please use inline comments wherever the code might be confusing for others to understand. 4.4 Indent level==
Inline comments should be used to clarify what exactly something is doing, or to leave a note for yourself or others regarding the code in that general area. Please use inline comments wherever the code might be confusing for others to understand.
All documents must have indentation when writing code in a code block. The indent level in any case will consist of two spaces. There will be no tab use. For example:
<pre>
int someFunction
}
Use of { } in a code block, such as in an if statement, a for loop, should start on a new line, with the { } lined up with the first character of the line above it. If the code block only has one coded line for the result, please use the curly brackets anyways for readability’s sake. For example:
<pre>
if ( mapleLeafs == lose)
}
</pre>
== 4.6 Variable Naming Conventions Variables should follow regular programming conventions ( must start with lowercase letter, no symbols…). Variables should be descriptive for better understanding of it’s For example:==
Variables should follow regular programming conventions ( must start with lowercase letter, no symbols…). Variables should be descriptive for better understanding of it’s For example:
<pre>
int someVar;
</pre>
== 4.7 Function Naming Conventions ==
Function names should start with a capital letter. For example:
int SomeFunction()
{
code;
}
</pre>
|+ [[ ASOS Brigade| ASOS Brigade]]! Last Name !! Name !! Seneca Username !! Section !! Blog Url !! IRC Nick !! Current Task !! SVN ID|-| Zhang || Shun Yao || syzhang4 || C || [http://shunyao-CPA.blogspot.com/ MY Blog] || DownWind || IO_MenuBar ||64|-| Hong || Yong || yhong17 || B || [http://xderick.blogspot.com/ xDerick' Blog] || Yong_Clicker || IO_Form, IO_Frame, IO_Field || 65|-| Kim || Taehoon || tkim28 || B || [http://hoonkoon.blogspot.com/ Blog] || hoongoon || IO_Radio || 66|-| Chen || Wen Fang || wfchen || C || [http://wenfangchen.blogspot.com/ Gwen's Blog] || Gwen2009 || IO_Label || 62|-| Xue || Yong || yxue11 || C || [http://opp344-yxue.blogspot.com/ Blog] || yxue11 || IO_Edit,IO_Vedit|| 67|-| Tran || Chi-Lea || ctran13 || C || [http://ctran13.blogspot.com Nitty Gritty] || ctran13 || ciol.c, IO_TextEdit|| 61|-| Tran || Victor || vvtran || C || [http://victran.blogspot.com Blog?] || victran || IO_CheckList || 63|-| Wang || Cong || cwang84 || B || [http://wangcong422.blogspot.com Blog] || cwang84 || IO_Menu || 68|-! Contact: !! - !! - !! - !! - !! - !! - !! -|-| Tran || Chi-Lea || - || - || - || - || - || -|-| Chen || Wen Fang || - || - || -|| - || -|| -|-|} ==