• Skip to content
  • Skip to link menu
KDE 4.5 API Reference
  • KDE API Reference
  • kdesdk
  • Sitemap
  • Contact Us
 

kompare

kompareinterface.cpp

Go to the documentation of this file.
00001 /*
00002   Copyright 2002-2004  Otto Bruggeman <otto.bruggeman@home.nl>
00003 
00004   This program is free software; you can redistribute it and/or
00005   modify it under the terms of the GNU General Public License as
00006   published by the Free Software Foundation; either version 2 of
00007   the License or (at your option) version 3 or any later version
00008   accepted by the membership of KDE e.V. (or its successor approved
00009   by the membership of KDE e.V.), which shall act as a proxy 
00010   defined in Section 14 of version 3 of the license.
00011 
00012   This program is distributed in the hope that it will be useful,
00013   but WITHOUT ANY WARRANTY; without even the implied warranty of
00014   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015   GNU General Public License for more details.
00016 
00017   You should have received a copy of the GNU General Public License
00018   along with this program.  If not, see <http://www.gnu.org/licenses/>.
00019 */
00020 #include "kompareinterface.h"
00021 
00022 class KompareInterfacePrivate
00023 {
00024 public:
00025     KompareInterfacePrivate();
00026     ~KompareInterfacePrivate();
00027     KompareInterfacePrivate( const KompareInterfacePrivate& );
00028     KompareInterfacePrivate& operator=( const KompareInterfacePrivate& );
00029 
00030 protected:
00031     // Add all variables for the KompareInterface class here and access them through the kip pointer
00032 };
00033 
00034 KompareInterfacePrivate::KompareInterfacePrivate()
00035 {
00036 }
00037 
00038 KompareInterfacePrivate::~KompareInterfacePrivate()
00039 {
00040 }
00041 
00042 KompareInterfacePrivate::KompareInterfacePrivate( const KompareInterfacePrivate& /*kip*/ )
00043 {
00044 }
00045 
00046 KompareInterfacePrivate& KompareInterfacePrivate::operator=(const KompareInterfacePrivate& /*kip*/ )
00047 {
00048     return *this;
00049 }
00050 
00051 KompareInterface::KompareInterface()
00052 {
00053     kip = new KompareInterfacePrivate();
00054 }
00055 
00056 KompareInterface::~KompareInterface()
00057 {
00058     delete kip;
00059 }
00060 
00061 KompareInterface::KompareInterface( const KompareInterface& ki )
00062 {
00063     kip = new KompareInterfacePrivate( *(ki.kip) );
00064 }
00065 
00066 KompareInterface& KompareInterface::operator=( const KompareInterface& ki )
00067 {
00068     kip = ki.kip;
00069     return *this;
00070 }
00071 
00072 void KompareInterface::setEncoding( const QString& encoding )
00073 {
00074     m_encoding = encoding;
00075 }
00076 

kompare

Skip menu "kompare"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members

kdesdk

Skip menu "kdesdk"
  • kapptemplate
  • kate
  •     kate
  • kbugbuster
  • kcachegrind
  • kompare
  • lokalize
  • umbrello
  •   umbrello
Generated for kdesdk by doxygen 1.5.9-20090814
This website is maintained by Adriaan de Groot and Allen Winter.
KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal