editor.cpp
1
22#include "editor.h"
23#include "core.h"
24
25namespace Komposer {
26
27class Editor::Private {
28public:
29 TQString id;
30};
31
32Editor::Editor( TQObject *parent, const char *name, const TQStringList &args )
33 : Plugin( parent, name, args ), d( new Private )
34{
35}
36
37Editor::~Editor()
38{
39 delete d; d = 0;
40}
41
42void
43Editor::select()
44{
45}
46
47
48}
49
50#include "editor.moc"
attachment.h
Definition: attachment.h:29