KrisLibrary  1.0.0
format.h
1 /**********************************************************************
2  * Primitive Format:
3  * class ClassName
4  * {
5  * ClassName() constructors (WARNING default should not initialize anything -- not zero!)
6  * operator*=() inplace operators
7  * operator Other() cast operators
8  * op() efficient operator methods in the form this=arg1 op arg2 ...
9  * setX() initializers
10  * getX() extractors
11  * inplaceX() inplace modifiers
12  * load/save() binary file io
13  * otherMethods() other methods
14  *
15  * attributes
16  * }
17  * external functions
18  **********************************************************************/