kompare
kompareinterface.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
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
00032 };
00033
00034 KompareInterfacePrivate::KompareInterfacePrivate()
00035 {
00036 }
00037
00038 KompareInterfacePrivate::~KompareInterfacePrivate()
00039 {
00040 }
00041
00042 KompareInterfacePrivate::KompareInterfacePrivate( const KompareInterfacePrivate& )
00043 {
00044 }
00045
00046 KompareInterfacePrivate& KompareInterfacePrivate::operator=(const KompareInterfacePrivate& )
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