libkdepim Library API Documentation

plugin.cpp

00001 // -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*- 00022 #include "plugin.h" 00023 00024 #include "core.h" 00025 00026 #include <qstring.h> 00027 00028 namespace Komposer 00029 { 00030 00031 class Plugin::Private 00032 { 00033 public: 00034 Core* core; 00035 }; 00036 00037 Plugin::Plugin( Core* core, QObject* parent, const char* name ) 00038 : QObject( parent, name ), d( new Private ) 00039 { 00040 d->core = core; 00041 } 00042 00043 Plugin::~Plugin() 00044 { 00045 delete d; d = 0; 00046 } 00047 00048 void 00049 Plugin::startedComposing() 00050 { 00051 } 00052 00053 void 00054 Plugin::sendClicked() 00055 { 00056 } 00057 00058 void 00059 Plugin::quitClicked() 00060 { 00061 } 00062 00063 void 00064 Plugin::aboutToUnload() 00065 { 00066 } 00067 00068 Core* 00069 Plugin::core() const 00070 { 00071 return d->core; 00072 } 00073 00074 }//end namespace Komposer 00075 00076 #include "plugin.moc"
KDE Logo
This file is part of the documentation for libkdepim Library Version 3.3.0.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Thu Oct 21 19:46:29 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003