root/coding_style.txt

Revision ,103, 405 bytes (checked in by Berkus <berkus@madfire.net>, 1 month ago)

Add namespaces sketch.

Line 
1 Use c_case_naming_convention anywhere instead of CamelCaseConvention --
2 all symbols are lower case, words are separated by _ symbol (for example
3 global_event_queue).
4
5 Atomic types have _t appended, complex types that denote structured objects do
6 not.
7 typedef int sint32_t;
8 class kernel;
9
10 namespace metta {
11         namespace kernel {
12         }
13         namespace userspace {
14                 namespace graphics {
15                 }
16                 namespace gui {
17                 }
18         }
19 }
Note: See TracBrowser for help on using the browser.