home Forums # Technical Support [C++] Is there a coding style? Reply To: [C++] Is there a coding style?

#1640

Hi Marco,

I follow Java conventions in C++ with a few exceptions. Within a class, I utilise mostly protected members whose names start with _ (e.g. Term* _myTerm). A header file (e.g. MyTerm.h) that contains no implementation and it is located at fuzzylite/fl, and the source file (e.g. MyTerm.cpp) located at fuzzylite/src.

I think if you revise the source code you might have an idea about the coding style.

Cheers,

Juan