We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As the source such guides can be taken :
Naming conventions should be also described.
The text was updated successfully, but these errors were encountered:
namespace name { exceptions and EXIT_CODES; enums; classes; }
class ClassName { // VARIABLES private : m_initialized = false; public : // CONSTRUCTORS/DESTRUCTORS public: ClassName() { Inintialize() }; ~ClassName() { Shutdown() }; // METHODES private : Inintialize(); Shutdown(); public : };
type m_variable_name;
type variableName;
type variable_name
type MethodeName();
type MethodeName( type parameter_name_ );
class ClassName{};
constexpr EXPR_NAME = 0;
Sorry, something went wrong.
OlegGedzjuns
No branches or pull requests
As the source such guides can be taken :
Naming conventions should be also described.
The text was updated successfully, but these errors were encountered: