xref: /haiku/src/apps/icon-o-matic/shape/commands/MovePathsCommand.h (revision 6427935280aaac0a1a4557bae55184708819560d)
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 MOVE_PATHS_COMMAND_H
10 #define MOVE_PATHS_COMMAND_H
11 
12 
13 #include "IconBuild.h"
14 #include "MoveCommand.h"
15 
16 
17 _BEGIN_ICON_NAMESPACE
18 	template <class Type> class Container;
19 	class VectorPath;
20 _END_ICON_NAMESPACE
21 
22 _USING_ICON_NAMESPACE
23 
24 
25 class MovePathsCommand : public MoveCommand<VectorPath> {
26  public:
27 							   	MovePathsCommand(
28 							   		Container<VectorPath>* container,
29 							   		VectorPath** paths,
30 							   		int32 count,
31 							   		int32 toIndex);
32 	virtual					   	~MovePathsCommand();
33 
34 	virtual void			   	GetName(BString& name);
35 };
36 
37 #endif // MOVE_PATHS_COMMAND_H
38