Function: ede-generic-project

ede-generic-project is a byte-compiled function defined in generic.el.gz.

Signature

(ede-generic-project &rest _)

Documentation

You cannot create a new object of type ede-generic-project(var)/ede-generic-project(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/generic.el.gz
(defclass ede-generic-project (ede-project-with-config
			       ede-project-with-config-build
			       ede-project-with-config-program
			       ede-project-with-config-c
			       ede-project-with-config-java)
  ((config-class :initform 'ede-generic-config)
   (config-file-basename :initform "EDEConfig.el")
   (buildfile :initform ""
	      :type string
	      :allocation :class
	      :documentation "The file name that identifies a project of this type.
The class allocated value is replace by different sub classes.")
   )
  "The baseclass for all generic EDE project types."
  :abstract t)