c++ Programming Glossary: eins
Should function declarations include parameter names? http://stackoverflow.com/questions/7891526/should-function-declarations-include-parameter-names header One.hpp #ifndef ONE_HPP #define ONE_HPP namespace eins brief description param one represents .... param two represents.. .... void function int int #endif One.cpp #include One.hpp eins function int one int two Do stuff Inside header One.hpp #ifndef.. header One.hpp #ifndef ONE_HPP #define ONE_HPP namespace eins brief description param one represents .... param two represents..
|