Fix pty handling on FreeBSD 8.0 (tiny change)
[emacs.git] / etc / srecode / cpp.srt
blob16cfc535761776e7b0456bf1dba99df29f1c8ef5
1 ;;; cpp.srt --- SRecode templates for c++-mode
3 ;; Copyright (C) 2007-2012 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/>.
22 set mode "c++-mode"
24 set comment_start  "/**"
25 set comment_end    " */"
26 set comment_prefix " *"
28 ;; OVERRIDE THIS in your user or project template file to whatever
29 ;; you use for your project.
30 set HEADEREXT ".h"
32 context file
34 template empty :time :user :file :cpp
35 ----
36 {{>:filecomment}}
38 {{#NOTHEADER}}
40 {{^}}
41 {{/NOTHEADER}}
42 {{#HEADER}}
43 {{>:header_guard}}
44 {{/HEADER}}
45 ----
47 template header_guard :file :blank
48 ----
49 #ifndef {{FILENAME_SYMBOL}}
50 #define {{FILENAME_SYMBOL}} 1
52 {{^}}
54 #endif // {{FILENAME_SYMBOL}}
55 ----
57 context misc
59 template 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 ----
66 context declaration
68 prompt TYPE "Return Type: "
70 template function :indent :blank
71 "Insert a function declaration."
72 ----
73 {{?TYPE}} {{?NAME}}{{>:misc:arglist}}
74 {{#INITIALIZERS}}{{>B:initializers}}{{/INITIALIZERS}}
76 {{^}}
78 ----
79 bind "f"
81 template function-prototype :indent :blank
82 "Insert a function declaration."
83 ----
84 {{?TYPE}} {{?NAME}}{{>:misc:arglist}};
85 ----
88 prompt TYPE "Data Type: "
90 template variable :indent :blank
91 "Insert a variable declaration."
92 ----
93 {{?TYPE}} {{?NAME}}{{#HAVEDEFAULT}} = {{DEFAULT}}{{/HAVEDEFAULT}};
94 ----
95 bind "v"
97 template variable-prototype :indent :blank
98 "Insert a variable declaration."
99 ----
100 {{?TYPE}} {{?NAME}};
101 ----
102 bind "v"
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."
108 ----
109 {{<A:class-tag}}
110    public:
111      {{>CONSTRUCTOR:classdecl:constructor-tag}}
112      {{>DESTRUCTOR:classdecl:destructor-tag}}
113    private:
114    {{^}}
116 {{/A}}
117 ----
119 template subclass :indent :blank
120 "Insert a C++ subclass of some other class."
121 sectiondictionary "PARENTS"
122 set NAME "?PARENTNAME"
123 ----
124 {{>A:class}}
125 ----
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."
131 ----
132 class {{?NAME}} {{#PARENTS}}{{#FIRST}}: {{/FIRST}}public {{NAME}}{{/PARENTS}}
133 {     
134    {{^}}
136 ----
137 bind "c"
139 template method :indent :blank
140 "Method belonging to some class, declared externally."
141 ----
142 {{?TYPE}} {{?PARENT}}::{{?NAME}}{{>:misc:arglist}}
143 {{#INITIALIZERS}}{{>B:initializers}}{{/INITIALIZERS}}
145 {{^}}
147 ----
149 template include :blank
150 "An include statement."
151 ----
152 #include "{{?NAME}}"
153 ----
154 bind "i"
156 template label :blank :indent
157 ----
158   {{?NAME}}:
159 ----
161 context classdecl
163 template constructor-tag :indent :blank
164 ----
165 {{?NAME}}{{>:misc:arglist}}
166 { {{^}} }
167 ----
169 ;; This one really sucks.  How can I finish it?
170 template initializers :indent
171 ----
172 {{#FIRST}}:
173 {{/FIRST}}{{INITNAME}}(){{#NOTLAST}},{{/NOTLAST}}
174 ----
176 template destructor-tag :indent :blank
177 ----
178 ~{{?NAME}}{{>:misc:arglist}}
179 { {{^}} }
180 ----
182 ;;; Base Comment functions for overriding.
183 context classdecl
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."
188 ----
189 {{>A:classdecl:doxygen-function-group-start}}
190 ----
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."
195 ----
196 {{>A:classdecl:doxygen-function-group-end}}
197 ----
199 context declaration
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"
204 ----
205 {{>A:declaration:doxygen-function}}
206 ----
208 ;;; DOXYGEN FEATURES
209 ;; 
211 context classdecl
213 prompt GROUPNAME "Name of declaration group: "
215 template doxygen-function-group-start :indent :blank
216 ----
218  * {{?GROUPNAME}}
219  * @{
220  */
222 ----
224 template doxygen-function-group-end :indent :blank
225 ----
227  * @}
228  */
230 ----
232 context declaration
234 template doxygen-function :indent :blank
235 ----
237  * @name {{NAME}} - {{DOC}}{{^}}{{#ARGS}}
238  * @param {{NAME}} - {{DOC}}{{/ARGS}}
239  * @return {{TYPE}}
240  */
241 ----
243 template doxygen-variable-same-line
244 ----
245 /**< {{DOC}}{{^}} */
246 ----
248 template doxygen-section-comment :blank :indent
249 "Insert a comment that separates sections of an Emacs Lisp file."
250 ----
252 /** {{?TITLE}}
254  * {{^}}
255  */
257 ----
260 ;; end