blob: 3eaba24474a5477e46a5963ee2a310297cfe7294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <tdeparts/part.h>
#include <klibloader.h>
#include <kurl.h>
#include <kdebug.h>
#include <tdevcore.h>
#include "adaproject_part.h"
#include "adaproject_widget.h"
AdaProjectWidget::AdaProjectWidget(AdaProjectPart *part)
: TQWidget(0, "AdaProject widget")
{
Q_UNUSED( part );
}
AdaProjectWidget::~AdaProjectWidget()
{
}
#include "adaproject_widget.moc"
|