Skip to content

GUI Coding Guidelines

Tobias Hermanns edited this page Nov 10, 2020 · 6 revisions

Scoping

All GUI classes, functions and global variables should be located in the hal namespace. Thus, all GUI variables, class definitions and code implementations are to be made within the hal namespace scope.

namespace hal
{
    ...
    ...
    ...
}
Clone this wiki locally