Function: ede-extra-config

ede-extra-config is a byte-compiled function defined in config.el.gz.

Signature

(ede-extra-config &rest SLOTS)

Documentation

Create a new object of class type ede-extra-config(var)/ede-extra-config(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/config.el.gz
;;; CONFIG
;;
;; This is the base of a configuration class supported by the
;; `ede-project-with-config' baseclass.
;;
(defclass ede-extra-config (eieio-persistent)
  ((extension :initform ".ede")
   (file-header-line :initform ";; EDE Project Configuration")
   (project :type ede-project-with-config
	    :documentation
	    "The project this config is bound to.")
   (ignored-file :initform nil
		 :type (or null symbol)
		 :documentation
		 "Set to non-nil if this was created and an on-disk file
was ignored.  Use this to warn the user that they might want to load in
an on-disk version.")
   )
  "Baseclass for auxiliary configuration files for EDE.
This should be subclassed by projects that auto detect a project
and also want to save some extra level of configuration.")