capybara-webkit/src/Node.h

14 lines
213 B
C
Raw Normal View History

2011-02-25 05:15:08 +00:00
#include "Command.h"
#include <QStringList>
class WebPage;
class Node : public Command {
2011-02-25 05:15:08 +00:00
Q_OBJECT
public:
Node(WebPage *page, QStringList &arguments, QObject *parent = 0);
virtual void start();
2011-02-25 05:15:08 +00:00
};