Function: ede-generic-target

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

Signature

(ede-generic-target &rest _)

Documentation

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

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/generic.el.gz
;;; Base Classes for the system
(defclass ede-generic-target (ede-target-with-config
			      ede-target-with-config-build
			      ede-target-with-config-program)
  ((shortname :initform ""
	     :type string
	     :allocation :class
	     :documentation
	     "Something prepended to the target name.")
  (extension :initform ""
	      :type string
	      :allocation :class
	      :documentation
	      "Regular expression representing the extension used for this target.
subclasses of this base target will override the default value.")
  )
  "Baseclass for all targets belonging to the generic ede system."
  :abstract t)