You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdevelop/parts/filter/kdevfilterIface.cpp

36 lines
596 B

//
//
// C++ Implementation: cpp
//
// Description:
//
//
// Author: KDevelop Authors <kdevelop-devel@kdevelop.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "kdevfilterIface.h"
#include "filterpart.h"
KDevFilterIface::KDevFilterIface( FilterPart* part )
: TQObject( part ), DCOPObject( "KDevFilter" ), m_part( part )
{
}
KDevFilterIface::~KDevFilterIface()
{
}
void KDevFilterIface::shellInsert()
{
m_part->slotShellInsert();
}
void KDevFilterIface::shellFilter()
{
m_part->slotShellFilter();
}
#include "kdevfilterIface.moc"