kateindentscriptabstracts.cpp00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include "kateindentscriptabstracts.h"
00020
00021 #include <kdebug.h>
00022 #include <qstring.h>
00023
00024
00025
00026 KateIndentScriptImplAbstract::KateIndentScriptImplAbstract(const QString& internalName,
00027 const QString &filePath, const QString &niceName,
00028 const QString ©right, double version):m_refcount(0),m_filePath(filePath),m_niceName(niceName),
00029 m_copyright(copyright),m_version(version)
00030 {
00031 }
00032
00033 KateIndentScriptImplAbstract::~KateIndentScriptImplAbstract()
00034 {
00035 }
00036
00037 void KateIndentScriptImplAbstract::incRef()
00038 {
00039 kdDebug(13050)<<"KateIndentScriptImplAbstract::incRef()"<<endl;
00040 m_refcount++;
00041 }
00042
00043 void KateIndentScriptImplAbstract::decRef()
00044 {
00045 kdDebug(13050)<<"KateIndentScriptImplAbstract::decRef()"<<endl;
00046 m_refcount--;
00047 }
00048
00049
|