kdevfilterIface.cpp
Go to the documentation of this file.00001 // 00002 // 00003 // C++ Implementation: cpp 00004 // 00005 // Description: 00006 // 00007 // 00008 // Author: KDevelop Authors <kdevelop-devel@kdevelop.org>, (C) 2003 00009 // 00010 // Copyright: See COPYING file that comes with this distribution 00011 // 00012 // 00013 #include "kdevfilterIface.h" 00014 #include "filterpart.h" 00015 00016 KDevFilterIface::KDevFilterIface( FilterPart* part ) 00017 : QObject( part ), DCOPObject( "KDevFilter" ), m_part( part ) 00018 { 00019 } 00020 00021 KDevFilterIface::~KDevFilterIface() 00022 { 00023 } 00024 00025 void KDevFilterIface::shellInsert() 00026 { 00027 m_part->slotShellInsert(); 00028 } 00029 00030 void KDevFilterIface::shellFilter() 00031 { 00032 m_part->slotShellFilter(); 00033 } 00034 00035 #include "kdevfilterIface.moc"