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