2011-02-18 22:53:06 -05:00
|
|
|
#include "Command.h"
|
|
|
|
|
|
|
|
class WebPage;
|
|
|
|
|
|
|
|
class NAME : public Command {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
NAME(WebPage *page, QObject *parent = 0);
|
2011-02-25 23:29:36 -05:00
|
|
|
virtual void start(QStringList &arguments);
|
2011-02-18 22:53:06 -05:00
|
|
|
};
|
|
|
|
|