capybara-webkit/src/CommandFactory.cpp

43 lines
1.0 KiB
C++
Raw Normal View History

2011-10-14 15:22:24 +00:00
#include "CommandFactory.h"
#include "NullCommand.h"
#include "SocketCommand.h"
2011-10-14 15:22:24 +00:00
#include "Visit.h"
#include "Find.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"
2011-10-14 21:13:06 +00:00
#include "SetProxy.h"
#include "ConsoleMessages.h"
#include "RequestedUrl.h"
2012-02-05 16:43:48 +00:00
#include "CurrentUrl.h"
#include "ResizeWindow.h"
#include "IgnoreSslErrors.h"
#include "SetSkipImageLoading.h"
2012-03-26 22:41:33 +00:00
#include "WindowFocus.h"
#include "GetWindowHandles.h"
#include "GetWindowHandle.h"
#include "WebPageManager.h"
#include "Authenticate.h"
#include "EnableLogging.h"
2011-10-14 15:22:24 +00:00
CommandFactory::CommandFactory(WebPageManager *manager, QObject *parent) : QObject(parent) {
m_manager = manager;
2011-10-14 15:22:24 +00:00
}
Command *CommandFactory::createCommand(const char *name, QStringList &arguments) {
2011-10-14 15:22:24 +00:00
#include "find_command.h"
return new NullCommand(QString(name));
2012-03-26 22:41:33 +00:00
}