Skip to content

Naming Conventions

Ashish Singh edited this page Sep 18, 2020 · 3 revisions

Naming Conventions in CaPTk2

Module name

  1. All files in Modules will be in namespace "captk".

Plugin name

Placeholder text.

File name

  1. Each file will start with namespace followed by class name. For ex: a class named "Example" will have the .h/.cpp files named as "captkExample.h" and "captkExample.cpp" respectively.

Class name

  1. Each class will have a separate file.

Method name

Placeholder text.