libkdepim Library API Documentation

editor.cpp

00001 // -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; -*- 00023 #include "editor.h" 00024 #include "core.h" 00025 00026 namespace Komposer { 00027 00028 class Editor::Private { 00029 public: 00030 QString id; 00031 }; 00032 00033 Editor::Editor( Core* core, QObject* parent, const char* name ) 00034 : Plugin( core, parent, name ), d( new Private ) 00035 { 00036 } 00037 00038 Editor::~Editor() 00039 { 00040 delete d; d = 0; 00041 } 00042 00043 void 00044 Editor::select() 00045 { 00046 } 00047 00048 00049 } 00050 00051 #include "editor.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