14 lines
342 B
C++
14 lines
342 B
C++
|
#include "TestUiApplication.h"
|
||
|
|
||
|
#include "MainApplication.h"
|
||
|
|
||
|
TestUiApplication::TestUiApplication(std::unique_ptr<CommandLineArgs> args, std::unique_ptr<MainApplication> mainApp)
|
||
|
: GuiApplication(std::move(args), std::move(mainApp))
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
DesktopManager* TestUiApplication::getDesktopManager() const
|
||
|
{
|
||
|
return mDesktopManager.get();
|
||
|
}
|