#ifndef APPLICATION_UNIX_CPP #error This file may only be included from CApplicationUnix.cpp #endif #include "boo/IApplication.hpp" #include DBusConnection* RegisterDBus(const char* appName, bool& isFirst); namespace boo { std::shared_ptr _WindowWaylandNew(std::string_view title); class ApplicationWayland final : public IApplication { IApplicationCallback& m_callback; const std::string m_uniqueName; const std::string m_friendlyName; const std::string m_pname; const std::vector m_args; bool m_singleInstance; void _deletedWindow([[maybe_unused]] IWindow* window) override {} public: ApplicationWayland(IApplicationCallback& callback, std::string_view uniqueName, std::string_view friendlyName, std::string_view pname, const std::vector& args, std::string_view gfxApi, uint32_t samples, uint32_t anisotropy, bool deepColor, bool singleInstance) : m_callback(callback) , m_uniqueName(uniqueName) , m_friendlyName(friendlyName) , m_pname(pname) , m_args(args) , m_singleInstance(singleInstance) { (void)m_callback; (void)m_singleInstance; } EPlatformType getPlatformType() const override { return EPlatformType::Wayland; } int run() override { return 0; } std::string_view getUniqueName() const override { return m_uniqueName; } std::string_view getFriendlyName() const override { return m_friendlyName; } std::string_view getProcessName() const override { return m_pname; } const std::vector& getArgs() const override { return m_args; } std::shared_ptr newWindow(std::string_view title) override { return _WindowWaylandNew(title); } }; } // namespace boo