editor.cpp
00001
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"
This file is part of the documentation for libkdepim Library Version 3.3.0.