/* * \brief Basic types used by decorator * \author Norman Feske * \date 2014-01-09 */ /* * Copyright (C) 2014 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU General Public License version 2. */ #ifndef _INCLUDE__DECORATOR__TYPES_H_ #define _INCLUDE__DECORATOR__TYPES_H_ /* Genode includes */ #include #include #include #include #include #include #include namespace Decorator { typedef Genode::Surface_base::Point Point; typedef Genode::Surface_base::Area Area; typedef Genode::Surface_base::Rect Rect; typedef Genode::Dirty_rect Dirty_rect; using Genode::size_t; using Genode::Color; using Genode::Xml_node; } #endif /* _INCLUDE__DECORATOR__TYPES_H_ */