Reformat to folow style

This commit is contained in:
Nikola Petrov
2024-03-03 22:31:15 +01:00
parent 8b3eb1cb7e
commit 462f27aa26
4 changed files with 79 additions and 55 deletions

20
Readme.md Normal file
View File

@@ -0,0 +1,20 @@
# Code style
## Naming Conventions:
- PascalCase:
- Functions
- Class names
- Struct names
- camelCase:
- Class attributes
- Class methods
- Struct attributes
- Variables
## Class Structure:
- Header (.h) Files:
- Declare public methods and attributes first, followed by private members.
- Implementation (.cpp) Files:
- Implement methods in the same order as declared in the corresponding header file.