Constructor macro for wcp-template-p structures.
Syntax:
(make-wcp-template [:name <name>] [:enabledp <enabledp>] [:pat <pat>] [:templ <templ>] [:rulenames <rulenames>] [:restriction <restriction>])
This is our preferred way to construct wcp-template-p structures. It simply conses together a structure with the specified fields.
This macro generates a new wcp-template-p structure from scratch. See also change-wcp-template, which can "change" an existing structure, instead.
The wcp-template-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-wcp-template instead.
This is an ordinary
Macro:
(defmacro make-wcp-template (&rest args) (std::make-aggregate 'wcp-template args '((:name) (:enabledp) (:pat) (:templ) (:rulenames) (:restriction)) 'make-wcp-template nil))