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
11class Playlist;
12class PlaylistItem;
13
14class PLItemsCommand : public Command {
15public:
16								PLItemsCommand();
17	virtual						~PLItemsCommand();
18
19protected:
20			void				_CleanUp(PlaylistItem**& items, int32 count,
21									bool deleteItems);
22};
23
24#endif // PL_ITEMS_COMMAND_H
25