1 ;;; cpp.srt --- SRecode templates for c++-mode
3 ;; Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5 ;; Author: Eric M. Ludlam <eric@siege-engine.com>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 set comment_start "/**"
26 set comment_prefix " *"
28 ;; OVERRIDE THIS in your user or project template file to whatever
29 ;; you use for your project.
34 template empty :time :user :file :cpp
47 template header_guard :file :blank
49 #ifndef {{FILENAME_SYMBOL}}
50 #define {{FILENAME_SYMBOL}} 1
54 #endif // {{FILENAME_SYMBOL}}
60 "Insert an argument list for a function.
61 @todo - Support smart CR in a buffer for not too long lines."
63 ({{#ARGS}}{{TYPE}} {{NAME}}{{#NOTLAST}},{{/NOTLAST}}{{/ARGS}})
68 prompt TYPE "Return Type: "
70 template function :indent :blank
71 "Insert a function declaration."
73 {{?TYPE}} {{?NAME}}{{>:misc:arglist}}
74 {{#INITIALIZERS}}{{>B:initializers}}{{/INITIALIZERS}}
81 template function-prototype :indent :blank
82 "Insert a function declaration."
84 {{?TYPE}} {{?NAME}}{{>:misc:arglist}};
88 prompt TYPE "Data Type: "
90 template variable :indent :blank
91 "Insert a variable declaration."
93 {{?TYPE}} {{?NAME}}{{#HAVEDEFAULT}} = {{DEFAULT}}{{/HAVEDEFAULT}};
97 template variable-prototype :indent :blank
98 "Insert a variable declaration."
104 template class :indent :blank
105 "Insert a C++ class. For use by user insertion.
106 Override this template to change contents of a class.
107 Override `class-tag' to override the outer structure of the class."
111 {{>CONSTRUCTOR:classdecl:constructor-tag}}
112 {{>DESTRUCTOR:classdecl:destructor-tag}}
119 template subclass :indent :blank
120 "Insert a C++ subclass of some other class."
121 sectiondictionary "PARENTS"
122 set NAME "?PARENTNAME"
127 template class-tag :indent :blank
128 "Insert a C++ class with the expectation of it being used by a tag inserter.
129 Override this to affect applications, or the outer class structure for
130 the user-facing template."
132 class {{?NAME}} {{#PARENTS}}{{#FIRST}}: {{/FIRST}}public {{NAME}}{{/PARENTS}}
139 template method :indent :blank
140 "Method belonging to some class, declared externally."
142 {{?TYPE}} {{?PARENT}}::{{?NAME}}{{>:misc:arglist}}
143 {{#INITIALIZERS}}{{>B:initializers}}{{/INITIALIZERS}}
149 template include :blank
150 "An include statement."
156 template label :blank :indent
163 template constructor-tag :indent :blank
165 {{?NAME}}{{>:misc:arglist}}
169 ;; This one really sucks. How can I finish it?
170 template initializers :indent
173 {{/FIRST}}{{INITNAME}}(){{#NOTLAST}},{{/NOTLAST}}
176 template destructor-tag :indent :blank
178 ~{{?NAME}}{{>:misc:arglist}}
182 ;;; Base Comment functions for overriding.
185 template comment-function-group-start :indent :blank
186 "Used for putting comments in front of a functional group of declarations.
187 Override this with your own preference to avoid using doxygen."
189 {{>A:classdecl:doxygen-function-group-start}}
192 template comment-function-group-end :indent :blank
193 "Used for putting comments in front of a functional group of declarations.
194 Override this with your own preference to avoid using doxygen."
196 {{>A:classdecl:doxygen-function-group-end}}
201 template comment-function :indent :blank
202 "Used to put a nice comment in front of a function.
203 Override this with your own preference to avoid using doxygen"
205 {{>A:declaration:doxygen-function}}
213 prompt GROUPNAME "Name of declaration group: "
215 template doxygen-function-group-start :indent :blank
224 template doxygen-function-group-end :indent :blank
234 template doxygen-function :indent :blank
237 * @name {{NAME}} - {{DOC}}{{^}}{{#ARGS}}
238 * @param {{NAME}} - {{DOC}}{{/ARGS}}
243 template doxygen-variable-same-line
248 template doxygen-section-comment :blank :indent
249 "Insert a comment that separates sections of an Emacs Lisp file."