13 lines
294 B
C
13 lines
294 B
C
|
#pragma once
|
||
|
|
||
|
#include "GuiApplication.h"
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
class TestUiApplication : public GuiApplication
|
||
|
{
|
||
|
public:
|
||
|
TestUiApplication(std::unique_ptr<CommandLineArgs> args = nullptr, std::unique_ptr<MainApplication> mainApp = nullptr);
|
||
|
|
||
|
DesktopManager* getDesktopManager() const;
|
||
|
};
|