Function: semantic-tag-new-include

semantic-tag-new-include is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-new-include NAME SYSTEM-FLAG &rest ATTRIBUTES)

Documentation

Create a semantic tag of class include.

NAME is the name of this include. SYSTEM-FLAG represents that we were able to identify this include as belonging to the system, as opposed to belonging to the local project. ATTRIBUTES is a list of additional attributes belonging to this tag.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-tag-new-include (name system-flag &rest attributes)
  "Create a semantic tag of class `include'.
NAME is the name of this include.
SYSTEM-FLAG represents that we were able to identify this include as
belonging to the system, as opposed to belonging to the local project.
ATTRIBUTES is a list of additional attributes belonging to this tag."
  (apply #'semantic-tag name 'include
         :system-flag system-flag
         attributes))