libkdepim
editor.cpp00001
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( QObject *parent, const char *name, const QStringList &args )
00034 : Plugin( parent, name, args ), 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"
|