blob: ef11eaf1ee343fc09baf86e253501843910f0489 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright (c) 2018 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <memory>
namespace Swift {
class FdpFormSubmitWindow;
class FdpFormSubmitWindowFactory {
public:
virtual ~FdpFormSubmitWindowFactory() {}
virtual std::unique_ptr<FdpFormSubmitWindow> createFdpFormSubmitWindow() = 0;
};
}
|