/* (C) 2003 XDA Developers * Author: Willem Jan Hengeveld * Web: http://www.xda-developers.com/ * * $Header$ */ #ifndef __COMMAND_H__ #include "stringutils.h" class Command { public: virtual bool execute(const StringList& parameters)=0; }; class CmdExecute : public Command { virtual bool execute(const StringList& parameters); }; class CmdSpawn : public Command { virtual bool execute(const StringList& parameters); }; class CmdCopy : public Command { virtual bool execute(const StringList& parameters); }; class CmdRename : public Command { virtual bool execute(const StringList& parameters); }; class CmdDelete : public Command { virtual bool execute(const StringList& parameters); }; class CmdMakelink : public Command { virtual bool execute(const StringList& parameters); }; #define __COMMAND_H__ #endif