/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include namespace Swift { class MockMainWindowFactory : public MainWindowFactory { public: MockMainWindowFactory() : last(nullptr) {} virtual ~MockMainWindowFactory() {} /** * Transfers ownership of result. */ virtual MainWindow* createMainWindow(UIEventStream*) {last = new MockMainWindow();return last;} MockMainWindow* last; }; }