From: Wolfgang Bangerth Date: Fri, 21 Aug 1998 17:51:13 +0000 (+0000) Subject: . X-Git-Tag: v8.0.0~22754 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04b015899378dde9389ea401d36b8f00dc0d263b;p=dealii.git . git-svn-id: https://svn.dealii.org/trunk@500 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/Conventions b/deal.II/deal.II/Conventions index 5b38a2b2ee..d3d5a9247b 100644 --- a/deal.II/deal.II/Conventions +++ b/deal.II/deal.II/Conventions @@ -61,5 +61,12 @@ Here are some conventions for source code of the deal.II library: handle run time errors (like I/O failures) which must be on in any case, not only in debug mode. -12./ Each class has to have at least 200 pages of documentation ;-) +12./ Classes generally are named using uppercase letters to denote + word beginnings (e.g. TriaIterator) while functions and variables + use lowercase letters and underscores to denote different words. + The only exception are the iterator typedefs in Triangulation + and DoFHandler (named cell_iterator, active_line_iterator, etc) + to make the connection to the STL classes clear. + +13./ Each class has to have at least 200 pages of documentation ;-)