Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 332 Bytes

File metadata and controls

8 lines (6 loc) · 332 Bytes

Headers folder (./source/include)

Header-only headers in include/ are globally available and source/*.cpp is globbed automatically.

Pragma once

Headers should use #pragma once directive to guard to prevent multiple inclusions of the same header file.

Lower Camel Case file names

application.cpp / class Application()