From 84da08d7b7fcda12c85caeb5a10b4903770a6f69 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- .../templates/cpplgpl.hh.katetemplate | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 kate/filetemplates/templates/cpplgpl.hh.katetemplate (limited to 'kate/filetemplates/templates/cpplgpl.hh.katetemplate') diff --git a/kate/filetemplates/templates/cpplgpl.hh.katetemplate b/kate/filetemplates/templates/cpplgpl.hh.katetemplate new file mode 100644 index 0000000..301f34b --- /dev/null +++ b/kate/filetemplates/templates/cpplgpl.hh.katetemplate @@ -0,0 +1,32 @@ +katetemplate: template=C++ Header (LGPL) group=Source Code documentname=New%N.hh highlight=C++ +katetemplate: description=A very simple LGPL C++ header file +katetemplate: author= Anders Lund +/* + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License version 2 as published by the Free Software Foundation. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + + --- + Copyright (C) %{year}, %{fullname} <%{email}> +*/ +#ifndef _${ClassName}_h_ +#define _${ClassName}_h_ + +class ${ClassName} : public ${Super} { + public: + ${ClassName}( ${cursor} ); + ~${ClassName}(); + +} + +#endif // _${ClassName}_h_ -- cgit v1.2.1