xref: /haiku/src/apps/mediaplayer/playlist/PLItemsCommand.h (revision 02354704729d38c3b078c696adc1bbbd33cbcf72)
1 /*
2  * Copyright 2009 Stephan Aßmus <superstippi@gmx.de>.
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 #ifndef PL_ITEMS_COMMAND_H
6 #define PL_ITEMS_COMMAND_H
7 
8 
9 #include "Command.h"
10 
11 class Playlist;
12 class PlaylistItem;
13 
14 class PLItemsCommand : public Command {
15 public:
16 								PLItemsCommand();
17 	virtual						~PLItemsCommand();
18 
19 protected:
20 			void				_CleanUp(PlaylistItem**& items, int32 count,
21 									bool deleteItems);
22 };
23 
24 #endif // PL_ITEMS_COMMAND_H
25