summaryrefslogtreecommitdiffstats
path: root/parts/filter/kdevfilterIface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/filter/kdevfilterIface.cpp')
-rw-r--r--parts/filter/kdevfilterIface.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/parts/filter/kdevfilterIface.cpp b/parts/filter/kdevfilterIface.cpp
new file mode 100644
index 00000000..55a0421a
--- /dev/null
+++ b/parts/filter/kdevfilterIface.cpp
@@ -0,0 +1,35 @@
+//
+//
+// 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 )
+ : QObject( part ), DCOPObject( "KDevFilter" ), m_part( part )
+{
+}
+
+KDevFilterIface::~KDevFilterIface()
+{
+}
+
+void KDevFilterIface::shellInsert()
+{
+ m_part->slotShellInsert();
+}
+
+void KDevFilterIface::shellFilter()
+{
+ m_part->slotShellFilter();
+}
+
+#include "kdevfilterIface.moc"