e35b83ca5354befa09565c72864adaa2e58b37c0
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / wm / window_state.cpp
1 /*
2  * Copyright (C) 2016 Simon Fels <morphis@gravedo.de>
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3, as published
6  * by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranties of
10  * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
11  * PURPOSE.  See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  */
17
18 #include "anbox/wm/window_state.h"
19
20 namespace anbox {
21 namespace wm {
22 WindowState::WindowState()
23     : display_(Display::Invalid),
24       has_surface_(false),
25       frame_(graphics::Rect::Invalid),
26       package_name_(""),
27       task_(Task::Invalid),
28       stack_(Stack::Id::Invalid) {}
29
30 WindowState::WindowState(const Display::Id &display, bool has_surface,
31                          const graphics::Rect &frame,
32                          const std::string &package_name, const Task::Id &task,
33                          const Stack::Id &stack)
34     : display_(display),
35       has_surface_(has_surface),
36       frame_(frame),
37       package_name_(package_name),
38       task_(task),
39       stack_(stack) {}
40
41 WindowState::~WindowState() {}
42 }  // namespace wm
43 }  // namespace anbox