Sha256: 119f6ed2137f00caa20c1eae7ba369f436cceb665a109ef912aecbf988783dde

Contents?: true

Size: 931 Bytes

Versions: 1

Compression:

Stored size: 931 Bytes

Contents

#include "CommandFactory.h"
#include "NullCommand.h"
#include "Visit.h"
#include "Find.h"
#include "Command.h"
#include "Reset.h"
#include "Node.h"
#include "Url.h"
#include "Source.h"
#include "Evaluate.h"
#include "Execute.h"
#include "FrameFocus.h"
#include "Header.h"
#include "Render.h"
#include "Body.h"
#include "Status.h"
#include "Headers.h"
#include "SetCookie.h"
#include "ClearCookies.h"
#include "GetCookies.h"
#include "SetProxy.h"
#include "ConsoleMessages.h"
#include "RequestedUrl.h"
#include "CurrentUrl.h"
#include "ResizeWindow.h"
#include "IgnoreSslErrors.h"
#include "SetSkipImageLoading.h"

CommandFactory::CommandFactory(WebPage *page, QObject *parent) : QObject(parent) {
  m_page = page;
}

Command *CommandFactory::createCommand(const char *name, QStringList &arguments) {
  #include "find_command.h"
  arguments.clear();
  arguments.append(QString(name));
  return new NullCommand(m_page, arguments);
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
otherinbox-capybara-webkit-0.12.0 src/CommandFactory.cpp