interfaces Library API Documentation

documentdcopinfo.cpp

00001 #include "documentinfo.h"
00002 #include "documentdcopinfo.h"
00003 
00004 #include <dcopclient.h>
00005 using namespace KTextEditor;
00006 
00007 DocumentInfoDCOPInterface::DocumentInfoDCOPInterface( DocumentInfoInterface *Parent, const char *name)
00008     : DCOPObject(name)
00009 {
00010     m_parent = Parent;
00011 }
00012 
00013 DocumentInfoDCOPInterface::~DocumentInfoDCOPInterface()
00014 {
00015 
00016 }
00017 
00018 QString DocumentInfoDCOPInterface::mimeType()
00019 {
00020     return m_parent->mimeType();
00021 }
00022 long  DocumentInfoDCOPInterface::fileSize()
00023 {
00024     return m_parent->fileSize();
00025 }
00026 QString DocumentInfoDCOPInterface::niceFileSize()
00027 {
00028     return m_parent->niceFileSize();
00029 }
00030 uint DocumentInfoDCOPInterface::documentInfoInterfaceNumber ()
00031 {
00032     return m_parent->documentInfoInterfaceNumber ();
00033 }
KDE Logo
This file is part of the documentation for kdelibs Version 3.1.0.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Wed Oct 8 12:22:15 2003 by doxygen 1.2.18 written by Dimitri van Heesch, © 1997-2001