Function: semantic-ctxt-imported-packages

semantic-ctxt-imported-packages is a byte-compiled function defined in ctxt.el.gz.

Signature

(semantic-ctxt-imported-packages &optional POINT)

Documentation

Return a list of package tags or names which are being imported at POINT.

The return value is a list of strings which are package names that are implied in code. Thus a C++ symbol:
  foo::bar();
where there is a statement such as:
  using baz;
means that the first symbol might be:
  baz::foo::bar();

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ctxt.el.gz
(define-overloadable-function semantic-ctxt-imported-packages (&optional point)
  "Return a list of package tags or names which are being imported at POINT.
The return value is a list of strings which are package names
that are implied in code.  Thus a C++ symbol:
  foo::bar();
where there is a statement such as:
  using baz;
means that the first symbol might be:
  baz::foo::bar();"
  nil)