Include once

From Mesham
Revision as of 15:44, 15 April 2019 by Polas (talk | contribs) (2 revisions imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Syntax

#include_once [sourcefile]

Semantics

Will read in the Mesham source file specified and will embed the contents of this source file into the code at the current location IF AND ONLY IF that specific file has not already been included before. This is a very useful mechanism to avoid duplicate includes when combining together multiple libraries.

Example

#include_once "test.mesh"
#include_once "test.mesh"

The preprocessing stage will replace the first include with the contents of test.mesh, but the second include_once will be ignored because that specific file has already been included. In the absence of the .mesh ending, the preprocessor will attempt to match on the absolute filename first and if this can not be found will then look for a file with the corresponding name and .mesh ending.

The preprocessor will search the include directories when the filename is contained in quotation marks. If contained within < > then the preprocessor will search the system include locations too which have priority.

Since: Version 1.0