/* * Copyright 2006-2007, Haiku. All rights reserved. * Distributed under the terms of the MIT License. * * Authors: * Stephan Aßmus */ #ifndef UTIL_H #define UTIL_H #include class AddPathsCommand; class AddStylesCommand; namespace BPrivate { namespace Icon { class PathContainer; class Style; class StyleContainer; class VectorPath; } } using namespace BPrivate::Icon; void new_style(rgb_color color, StyleContainer* container, Style** style, AddStylesCommand** command); void new_path(PathContainer* container, VectorPath** path, AddPathsCommand** command, VectorPath* other = NULL); #endif // UTIL_H