blob: f5af83c9d43259039055391f201c37e32c2c4603 (
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 )
: QObject( cppSupport ), DCOPObject( "KDevCppSupport" ), m_cppSupport( cppSupport )
{
}
KDevCppSupportIface::~KDevCppSupportIface()
{
}
void KDevCppSupportIface::addClass()
{
m_cppSupport->slotNewClass();
}
void KDevCppSupportIface::parseProject()
{
m_cppSupport->parseProject();
}
#include "KDevCppSupportIface.moc"
|