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 TQString id; 00031 }; 00032 00033 Editor::Editor( TQObject *parent, const char *name, const TQStringList &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"