Function: ede-extra-config-program--eieio-childp
ede-extra-config-program--eieio-childp is a byte-compiled function
defined in config.el.gz.
Signature
(ede-extra-config-program--eieio-childp OBJ)
Documentation
Return non-nil if OBJ is an object of type ede-extra-config-program(var)/ede-extra-config-program(fun) or a subclass.
Aliases
ede-extra-config-program-child-p (obsolete since 25.1)
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/config.el.gz
;;; PROJECT MIXINS
;;
;; These are project part mixins. Use multiple inheritance for each
;; piece of these configuration options you would like to have as part
;; of your project.
;;; PROGRAM
;; If there is a program that can be run or debugged that is unknown
;; and needs to be configured.
(defclass ede-extra-config-program ()
((debug-command :initarg :debug-command
:initform "gdb "
:type string
:group commands
:custom string
:group (default build)
:documentation
"Command used for debugging this project.")
(run-command :initarg :run-command
:initform ""
:type string
:group commands
:custom string
:group (default build)
:documentation
"Command used to run something related to this project."))
"Class to mix into a configuration for debug/run of programs.")