summaryrefslogtreecommitdiffstats
path: root/languages/cpp/TDevCppSupportIface.cpp
blob: 54977c4cbcb86c4fbe9b3633499c327e7188d03a (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 "TDevCppSupportIface.h"
#include "cppsupportpart.h"

TDevCppSupportIface::TDevCppSupportIface( CppSupportPart* cppSupport )
    : TQObject( cppSupport ), DCOPObject( "TDevCppSupport" ), m_cppSupport( cppSupport )
{
}

TDevCppSupportIface::~TDevCppSupportIface()
{
}

void TDevCppSupportIface::addClass()
{
    m_cppSupport->slotNewClass();
}

void TDevCppSupportIface::parseProject()
{
    m_cppSupport->parseProject();
}

#include "TDevCppSupportIface.moc"