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 REMOVE_TRANSFORMERS_COMMAND_H 10 #define REMOVE_TRANSFORMERS_COMMAND_H 11 12 13 #include "IconBuild.h" 14 #include "RemoveCommand.h" 15 16 17 _BEGIN_ICON_NAMESPACE 18 class Transformer; 19 _END_ICON_NAMESPACE 20 21 _USING_ICON_NAMESPACE 22 23 24 class RemoveTransformersCommand : public RemoveCommand<Transformer> { 25 public: 26 RemoveTransformersCommand( 27 Container<Transformer>* container, 28 const int32* indices, 29 int32 count); 30 virtual ~RemoveTransformersCommand(); 31 32 virtual void GetName(BString& name); 33 }; 34 35 #endif // REMOVE_TRANSFORMERS_COMMAND_H 36