opuntiaOS - an operating system targeting x86 and ARMv7
1/* 2 * Copyright (C) 2020-2022 The opuntiaOS Project Authors. 3 * + Contributed by Nikita Melekhin <nimelehin@gmail.com> 4 * 5 * Use of this source code is governed by a BSD-style license that can be 6 * found in the LICENSE file. 7 */ 8 9#pragma once 10 11#include "../Desktop/Window.h" 12#include "../Mobile/Window.h" 13 14namespace WinServer { 15 16#ifdef TARGET_DESKTOP 17using Window = Desktop::Window; 18#elif TARGET_MOBILE 19using Window = Mobile::Window; 20#endif 21 22} // namespace WinServer