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