~ubuntu-branches/ubuntu/saucy/kate/saucy

« back to all changes in this revision

Viewing changes to kate/plugins/filetemplates/templates/cpplgpl.hh.katetemplate

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell, Rohan Garg, Jonathan Riddell
  • Date: 2013-06-21 00:48:29 UTC
  • mfrom: (1.1.28)
  • Revision ID: package-import@ubuntu.com-20130621004829-y2ui02eg0j47h94y
Tags: 4:4.10.80-0ubuntu1
[ Rohan Garg ]
* New upstream release
  - Update and sort install files
  - Drop kubuntu_pate_find_python.diff, kubuntu_kate_initial_preference.patch,
    kubuntu_find_python.diff from debian/patches , not required

[ Jonathan Riddell ]
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
katetemplate: template=C++ Header (LGPL) group=Source Code documentname=New%N.hh highlight=C++
2
 
katetemplate: description=A very simple LGPL C++ header file
3
 
katetemplate: author= Anders Lund <anders@alweb.dk>
4
 
/*
5
 
    This library is free software; you can redistribute it and/or
6
 
    modify it under the terms of the GNU Library General Public
7
 
    License version 2 as published by the Free Software Foundation.
8
 
 
9
 
    This library is distributed in the hope that it will be useful,
10
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
    Library General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU Library General Public License
15
 
    along with this library; see the file COPYING.LIB.  If not, write to
16
 
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17
 
    Boston, MA 02110-1301, USA.
18
 
 
19
 
    ---
20
 
    Copyright (C) %{year}, %{fullname} <%{email}>
21
 
*/
22
 
#ifndef _${ClassName}_h_
23
 
#define _${ClassName}_h_
24
 
 
25
 
class ${ClassName} : public ${Super} {
26
 
  public:
27
 
    ${ClassName}( ${cursor} );
28
 
    ~${ClassName}();
29
 
 
30
 
}
31
 
 
32
 
#endif // _${ClassName}_h_