Function: semanticdb-abstract-cache
semanticdb-abstract-cache is a byte-compiled function defined in
db.el.gz.
Signature
(semanticdb-abstract-cache &rest _)
Documentation
You cannot create a new object of type semanticdb-abstract-cache(var)/semanticdb-abstract-cache(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db.el.gz
;;; Cache Cache.
;;
(defclass semanticdb-abstract-cache ()
((table :initarg :table
:type semanticdb-abstract-table
:documentation
"Cross reference to the table this belongs to.")
)
"Abstract baseclass for tools to use to cache information in semanticdb.
Tools needing a per-file cache must subclass this, and then get one as
needed. Cache objects are identified in semanticdb by subclass.
In order to keep your cache up to date, be sure to implement
`semanticdb-synchronize', and `semanticdb-partial-synchronize'.
See the file semantic/scope.el for an example."
:abstract t)