summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/UIInterfaces/ViewHistoryWindowFactory.h')
-rw-r--r--Swift/Controllers/UIInterfaces/ViewHistoryWindowFactory.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/ViewHistoryWindowFactory.h b/Swift/Controllers/UIInterfaces/ViewHistoryWindowFactory.h
new file mode 100644
index 0000000..a91e149
--- /dev/null
+++ b/Swift/Controllers/UIInterfaces/ViewHistoryWindowFactory.h
@@ -0,0 +1,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;
+ };
+}