interfaces
clipboarddcopinterface.cpp
Go to the documentation of this file.00001 #include "clipboarddcopinterface.h" 00002 #include "clipboardinterface.h" 00003 00004 #include <dcopclient.h> 00005 using namespace KTextEditor; 00006 00007 ClipboardDCOPInterface::ClipboardDCOPInterface( ClipboardInterface *Parent, const char *name) 00008 : DCOPObject(name) 00009 { 00010 m_parent = Parent; 00011 } 00012 00013 ClipboardDCOPInterface::~ClipboardDCOPInterface() 00014 { 00015 00016 } 00017 00021 void ClipboardDCOPInterface::copy ( ) 00022 { 00023 m_parent->copy(); 00024 } 00025 00029 void ClipboardDCOPInterface::cut ( ) 00030 { 00031 m_parent->cut(); 00032 } 00033 00037 void ClipboardDCOPInterface::paste ( ) 00038 { 00039 m_parent->paste(); 00040 }