1/*
2 * Copyright 2006-2007, 2023, Haiku.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 *		Stephan A��mus <superstippi@gmx.de>
7 *		Zardshard
8 */
9#ifndef ADD_PATHS_COMMAND_H
10#define ADD_PATHS_COMMAND_H
11
12
13#include "AddCommand.h"
14#include "IconBuild.h"
15
16
17_BEGIN_ICON_NAMESPACE
18	class VectorPath;
19_END_ICON_NAMESPACE
20
21_USING_ICON_NAMESPACE
22
23
24class AddPathsCommand : public AddCommand<VectorPath> {
25 public:
26								AddPathsCommand(
27									Container<VectorPath>* container,
28									const VectorPath* const* paths,
29									int32 count,
30									bool ownsPaths,
31									int32 index);
32	virtual						~AddPathsCommand();
33
34	virtual void				GetName(BString& name);
35};
36
37#endif // ADD_PATHS_COMMAND_H
38