mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
777b182edd
This allowed me to standardize the sourcetar and sf/* scripts: the base directory (containing ./git) is now empty, except for maintenance scripts, while the source files and build scripts of the annotations are stored in a subdirectory of their own.
12 lines
458 B
Text
12 lines
458 B
Text
Instead of em(defining) entities in a namespace, entities may also be
|
|
em(declared) in a namespace. This allows us to put all the
|
|
hi(namespace declarations) declarations in a header file that can
|
|
thereupon be included in sources using the entities defined in the
|
|
namespace. Such a header file could contain, e.g.,
|
|
verb(
|
|
namespace CppAnnotations
|
|
{
|
|
double cos(double degrees);
|
|
double sin(double degrees);
|
|
}
|
|
)
|