What is the C++ Style Guide ?ΒΆ
Warning
Section under construction. Until further notice, please use the Google C++ style guide
A repository should contain at most \(1\) C++ library.
The C++ library source code must be located in the
scr/cppdirectory.To install headers of the C++ library, a developer should use the following command in the repository root
scons cpp-devTo generate and install the C++ library binaries, a developer should use the following command in the repository root
scons cpp-libThe following command
scons cppshould be equivalent to the following commands
scons cpp-dev scons cpp-lib
If the C++ library is interfaced in any other languages (e.g., Python or R), the wrappers should be generated using the following command
scons autowigNote
In this case, guidelines proposed in the AutoWIG documentation are of most importance.