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