Function: semanticdb-abstract-db-cache

semanticdb-abstract-db-cache is a byte-compiled function defined in db.el.gz.

Signature

(semanticdb-abstract-db-cache &rest _)

Documentation

You cannot create a new object of type semanticdb-abstract-db-cache(var)/semanticdb-abstract-db-cache(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/db.el.gz
(defclass semanticdb-abstract-db-cache ()
  ((db :initarg :db
       :type semanticdb-project-database
       :documentation
       "Cross reference to the database this belongs to.")
   )
  "Abstract baseclass for tools to use to cache information in semanticdb.
Tools needing a database 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)