1 /*****************************************************************************
3 *****************************************************************************
4 * Copyright (C) 2004 VideoLAN
7 * Authors: Cyril Deguet <asmax@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
22 *****************************************************************************/
27 #include "cmd_generic.hpp"
28 #include "../utils/ustring.hpp"
32 /// Command to notify the playlist of a change
33 DEFINE_COMMAND( NotifyPlaylist, "notify playlist" )
36 /// Command to set a stream variable
37 class CmdSetStream: public CmdGeneric
40 CmdSetStream( intf_thread_t *pIntf, Stream &rStream,
41 const UString &rName, bool updateVLC ):
42 CmdGeneric( pIntf ), m_rStream( rStream ), m_name( rName ),
43 m_updateVLC( updateVLC ) {}
44 virtual ~CmdSetStream() {}
46 /// This method does the real job of the command
47 virtual void execute();
49 /// Return the type of the command
50 virtual string getType() const { return "set stream"; }
53 /// Stream variable to set