Squash commits for public release
This commit is contained in:
14
userland/servers/window_server/src/Target/Generic/Window.h
Normal file
14
userland/servers/window_server/src/Target/Generic/Window.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include "../Desktop/Window.h"
|
||||
#include "../Mobile/Window.h"
|
||||
|
||||
namespace WinServer {
|
||||
|
||||
#ifdef TARGET_DESKTOP
|
||||
using Window = Desktop::Window;
|
||||
#elif TARGET_MOBILE
|
||||
using Window = Mobile::Window;
|
||||
#endif
|
||||
|
||||
} // namespace WinServer
|
||||
Reference in New Issue
Block a user