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