Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / etc / srecode / cpp.srt
CommitLineData
c05676c5
CY
1;;; cpp.srt --- SRecode templates for c++-mode
2
acaf905b 3;; Copyright (C) 2007-2012 Free Software Foundation, Inc.
c05676c5
CY
4
5;; Author: Eric M. Ludlam <eric@siege-engine.com>
6
7;; This file is part of GNU Emacs.
8
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.
13
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.
18
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/>.
21
22set mode "c++-mode"
23
24set comment_start "/**"
25set comment_end " */"
26set comment_prefix " *"
27
28;; OVERRIDE THIS in your user or project template file to whatever
29;; you use for your project.
30set HEADEREXT ".h"
31
32context file
33
34template empty :time :user :file :cpp
35----
36{{>:filecomment}}
37
38{{#NOTHEADER}}
39
40{{^}}
41{{/NOTHEADER}}
42{{#HEADER}}
43{{>:header_guard}}
44{{/HEADER}}
45----
46
47template header_guard :file :blank
48----
49#ifndef {{FILENAME_SYMBOL}}
50#define {{FILENAME_SYMBOL}} 1
51
52{{^}}
53
54#endif // {{FILENAME_SYMBOL}}
55----
56
57context misc
58
59template arglist
60"Insert an argument list for a function.
61@todo - Support smart CR in a buffer for not too long lines."
62----
63({{#ARGS}}{{TYPE}} {{NAME}}{{#NOTLAST}},{{/NOTLAST}}{{/ARGS}})
64----
65
66context declaration
67
68prompt TYPE "Return Type: "
69
70template function :indent :blank
71"Insert a function declaration."
72----
73{{?TYPE}} {{?NAME}}{{>:misc:arglist}}
74{{#INITIALIZERS}}{{>B:initializers}}{{/INITIALIZERS}}
75{
76{{^}}
77}
78----
79bind "f"
80
81template function-prototype :indent :blank
82"Insert a function declaration."
83----
84{{?TYPE}} {{?NAME}}{{>:misc:arglist}};
85----
86
87
88prompt TYPE "Data Type: "
89
90template variable :indent :blank
91"Insert a variable declaration."
92----
93{{?TYPE}} {{?NAME}}{{#HAVEDEFAULT}} = {{DEFAULT}}{{/HAVEDEFAULT}};
94----
95bind "v"
96
97template variable-prototype :indent :blank
98"Insert a variable declaration."
99----
100{{?TYPE}} {{?NAME}};
101----
102bind "v"
103
104template class :indent :blank
105"Insert a C++ class. For use by user insertion.
106Override this template to change contents of a class.
107Override `class-tag' to override the outer structure of the class."
108----
109{{<A:class-tag}}
110 public:
111 {{>CONSTRUCTOR:classdecl:constructor-tag}}
112 {{>DESTRUCTOR:classdecl:destructor-tag}}
113 private:
114 {{^}}
115
116{{/A}}
117----
118
119template subclass :indent :blank
120"Insert a C++ subclass of some other class."
121sectiondictionary "PARENTS"
122set NAME "?PARENTNAME"
123----
124{{>A:class}}
125----
126
127template class-tag :indent :blank
128"Insert a C++ class with the expectation of it being used by a tag inserter.
129Override this to affect applications, or the outer class structure for
130the user-facing template."
131----
132class {{?NAME}} {{#PARENTS}}{{#FIRST}}: {{/FIRST}}public {{NAME}}{{/PARENTS}}
133{
134 {{^}}
135};
136----
137bind "c"
138
139template method :indent :blank
140"Method belonging to some class, declared externally."
141----
142{{?TYPE}} {{?PARENT}}::{{?NAME}}{{>:misc:arglist}}
143{{#INITIALIZERS}}{{>B:initializers}}{{/INITIALIZERS}}
144{
145{{^}}
146}
147----
148
149template include :blank
150"An include statement."
151----
152#include "{{?NAME}}"
153----
154bind "i"
155
156template label :blank :indent
157----
158 {{?NAME}}:
159----
160
161context classdecl
162
163template constructor-tag :indent :blank
164----
165{{?NAME}}{{>:misc:arglist}}
166{ {{^}} }
167----
168
169;; This one really sucks. How can I finish it?
170template initializers :indent
171----
172{{#FIRST}}:
173{{/FIRST}}{{INITNAME}}(){{#NOTLAST}},{{/NOTLAST}}
174----
175
176template destructor-tag :indent :blank
177----
178~{{?NAME}}{{>:misc:arglist}}
179{ {{^}} }
180----
181
182;;; Base Comment functions for overriding.
183context classdecl
184
185template comment-function-group-start :indent :blank
186"Used for putting comments in front of a functional group of declarations.
187Override this with your own preference to avoid using doxygen."
188----
189{{>A:classdecl:doxygen-function-group-start}}
190----
191
192template comment-function-group-end :indent :blank
193"Used for putting comments in front of a functional group of declarations.
194Override this with your own preference to avoid using doxygen."
195----
196{{>A:classdecl:doxygen-function-group-end}}
197----
198
199context declaration
200
201template comment-function :indent :blank
202"Used to put a nice comment in front of a function.
203Override this with your own preference to avoid using doxygen"
204----
205{{>A:declaration:doxygen-function}}
206----
207
208;;; DOXYGEN FEATURES
209;;
210;;
211context classdecl
212
213prompt GROUPNAME "Name of declaration group: "
214
215template doxygen-function-group-start :indent :blank
216----
217/**
218 * {{?GROUPNAME}}
219 * @{
220 */
221
222----
223
224template doxygen-function-group-end :indent :blank
225----
226/**
227 * @}
228 */
229
230----
231
232context declaration
233
234template doxygen-function :indent :blank
235----
236/**
237 * @name {{NAME}} - {{DOC}}{{^}}{{#ARGS}}
238 * @param {{NAME}} - {{DOC}}{{/ARGS}}
239 * @return {{TYPE}}
240 */
241----
242
243template doxygen-variable-same-line
244----
245/**< {{DOC}}{{^}} */
246----
247
248template doxygen-section-comment :blank :indent
249"Insert a comment that separates sections of an Emacs Lisp file."
250----
251\f
252/** {{?TITLE}}
253 *
254 * {{^}}
255 */
256
257----
258
259
260;; end