mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
12 lines
193 B
C++
12 lines
193 B
C++
#include "Command.h"
|
|
|
|
class WebPage;
|
|
|
|
class NAME : public Command {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
NAME(WebPageManager *, QStringList &arguments, QObject *parent = 0);
|
|
virtual void start();
|
|
};
|
|
|