blob: 793516cab1d8b7e75ddeb3a5f1a31865a2c1b802 (
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 "KDevCppSupportIface.h"
#include "cppsupportpart.h"
KDevCppSupportIface::KDevCppSupportIface( CppSupportPart* cppSupport )
: TQObject( cppSupport ), DCOPObject( "KDevCppSupport" ), m_cppSupport( cppSupport )
{
}
KDevCppSupportIface::~KDevCppSupportIface()
{
}
void KDevCppSupportIface::addClass()
{
m_cppSupport->slotNewClass();
}
void KDevCppSupportIface::parseProject()
{
m_cppSupport->parseProject();
}
#include "KDevCppSupportIface.moc"
|