Sha256: 361be1e31a3825e99b4ef1e455b3719af38789bab5e6ea74aab9ed010e7aea56

Contents?: true

Size: 318 Bytes

Versions: 4

Compression:

Stored size: 318 Bytes

Contents

#include "Command.h"
#include "WebPage.h"

Command::Command(WebPage *page, QStringList &arguments, QObject *parent) : QObject(parent) {
  m_page = page;
  m_arguments = arguments;
}

void Command::start() {
}

WebPage *Command::page() {
  return m_page;
}

QStringList &Command::arguments() {
  return m_arguments;
}

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
imseng-capybara-webkit-0.12.1 src/Command.cpp
capybara-webkit-0.12.1 src/Command.cpp
otherinbox-capybara-webkit-0.12.0 src/Command.cpp
capybara-webkit-0.12.0 src/Command.cpp