Older Documentation: Difference between revisions

From OpenMW Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ This page contains a list of links to pages that are either outdated or superseded by other pages, but may still be occasionally useful. * Roadmap - a li...")
 
(No difference)

Latest revision as of 10:17, 8 August 2011

This page contains a list of links to pages that are either outdated or superseded by other pages, but may still be occasionally useful.

Developer Reference (Old)

This page is a collection of assorted documentation that developers may find useful.

Code Guideline

Example of a function :

namespace MyNs
{
    class MyClass
    {
        private:
            int mIsLikeThis;
        public:
            float& myCalcFunction (float p1, float p2)
            {
                myClass->doSomething (p1, p2);
 
                p1  = p2;
            }
    };
}