mirror of
https://github.com/kunkundi/crossdesk.git
synced 2026-07-27 01:38:43 +08:00
16 lines
283 B
C++
16 lines
283 B
C++
#include "render.h"
|
|
|
|
#include <memory>
|
|
|
|
#include "application/gui_application.h"
|
|
|
|
namespace crossdesk {
|
|
|
|
Render::Render() : application_(std::make_unique<GuiApplication>()) {}
|
|
|
|
Render::~Render() = default;
|
|
|
|
int Render::Run() { return application_->Run(); }
|
|
|
|
} // namespace crossdesk
|