Kate
python_encoding.cpp
Go to the documentation of this file.00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2001,2006 Joseph Wenninger <jowenn@kde.org> 00003 [katedocument.cpp, LGPL v2 only] 00004 00005 ================RELICENSED================= 00006 00007 This file is part of the KDE libraries 00008 Copyright (C) 2008 Joseph Wenninger <jowenn@kde.org> 00009 00010 This library is free software; you can redistribute it and/or 00011 modify it under the terms of the GNU Library General Public 00012 License as published by the Free Software Foundation; either 00013 version 2 of the License, or (at your option) any later version. 00014 00015 This library is distributed in the hope that it will be useful, 00016 but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 Library General Public License for more details. 00019 00020 You should have received a copy of the GNU Library General Public License 00021 along with this library; see the file COPYING.LIB. If not, write to 00022 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00023 Boston, MA 02110-1301, USA. 00024 */ 00025 00026 //BEGIN includes 00027 #include "python_encoding.h" 00028 #include "python_encoding.moc" 00029 #include <kpluginfactory.h> 00030 #include <kpluginloader.h> 00031 #include <kaboutdata.h> 00032 //END includes 00033 00034 K_PLUGIN_FACTORY( KTextEditorPythonEncodingFactory, registerPlugin<KTextEditorPythonEncodingCheck>(); ) 00035 K_EXPORT_PLUGIN( KTextEditorPythonEncodingFactory( KAboutData( "ktexteditor_python-encoding", "ktexteditor_plugins", ki18n("PythonEncoding"), "0.1", ki18n("Python Encoding check"), KAboutData::License_LGPL_V2 ) ) ) 00036 00037 // kate: space-indent on; indent-width 2; replace-tabs on;