blob: a91e149b350152b3c197f6d00d4f56fed1e32743 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (c) 2011 Vlad Voicu
* Licensed under the Simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#pragma once
#include <Swift/Controllers/UIInterfaces/ViewHistoryWindow.h>
namespace Swift {
class ViewHistoryWindowFactory {
public:
virtual ~ViewHistoryWindowFactory() {};
virtual ViewHistoryWindow* createViewHistoryWindow() = 0;
};
}
|