1 /*
2  * SPDX-FileCopyrightText: 2016-2016 CSSlayer <wengxt@gmail.com>
3  *
4  * SPDX-License-Identifier: LGPL-2.1-or-later
5  *
6  */
7 
8 #include "window.h"
9 
10 namespace fcitx::classicui {
11 
Window()12 Window::Window() {}
13 
resize(unsigned int width,unsigned int height)14 void Window::resize(unsigned int width, unsigned int height) {
15     width_ = width;
16     height_ = height;
17 }
18 } // namespace fcitx::classicui
19