1 ;; doc-c.srt --- SRecode templates for "document" applications
3 ;; Copyright (C) 2008-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/>.
24 set application "document"
27 ;;; Notes on the DOCUMENT templates.
29 ;; These templates recycle existing templates for doxygen in the
30 ;; more general C++ template set.
32 template section-comment :indent :blank
33 "A comment separating major sections of a file."
35 {{>:declaration:doxygen-section-comment}}
38 template function-comment :tag :indent :blank
39 "A comment occurring in front of a function.
40 Recycle doxygen comment code from the more general template set."
42 {{>:declaration:doxygen-function}}
45 template variable-same-line-comment :tag
46 "A comment occurring after a variable declaration.
47 Recycle doxygen comment code from the more general template set."
49 {{>:declaration:doxygen-variable-same-line}}
52 ;; These happen to be the same as in a classdecl.
53 template group-comment-start :blank :indent
54 "A comment occurring in front of a group of declarations.
55 Recycle doxygen comment code from the more general template set."
57 {{>:classdecl:doxygen-function-group-start}}
60 template group-comment-end :blank :indent
61 "A comment occurring at the end of a group of declarations.
62 Recycle doxygen comment code from the more general template set."
64 {{>:classdecl:doxygen-function-group-end}}
67 ;; Some templates only show up in classdecls.
70 template group-comment-start :blank :indent
71 "A comment occurring in front of a group of declarations.
72 Recycle doxygen comment code from the more general template set."
74 {{>:classdecl:doxygen-function-group-start}}
77 template group-comment-end :blank :indent
78 "A comment occurring at the end of a group of declarations.
79 Recycle doxygen comment code from the more general template set."
81 {{>:classdecl:doxygen-function-group-end}}