xref: /haiku/src/apps/icon-o-matic/shape/commands/MoveTransformersCommand.h (revision 3386b8b7858f5659c205b8f088eb568692699591)
1 /*
2  * Copyright 2006, 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_TRANSFORMERS_COMMAND_H
10 #define MOVE_TRANSFORMERS_COMMAND_H
11 
12 
13 #include "IconBuild.h"
14 #include "MoveCommand.h"
15 
16 
17 _BEGIN_ICON_NAMESPACE
18 	class Transformer;
19 _END_ICON_NAMESPACE
20 
21 _USING_ICON_NAMESPACE
22 
23 
24 class MoveTransformersCommand : public MoveCommand<Transformer> {
25  public:
26 								MoveTransformersCommand(
27 									Container<Transformer>* shape,
28 									Transformer** transformers,
29 									int32 count,
30 									int32 toIndex);
31 	virtual						~MoveTransformersCommand();
32 
33 	virtual void				GetName(BString& name);
34 };
35 
36 #endif // MOVE_TRANSFORMERS_COMMAND_H
37