Should Doxygen documentation be placed before or after include guards; before or inside a namespace?
Assume the header contains the declaration of a single class (context
) and this is what I am documenting here.
#ifndef CONTEXT_HPP
#define CONTEXT_HPP
#include <string>
/**
* The application context interface.
*/
namespace test {
class context { ... };
}