summaryrefslogtreecommitdiffstats
blob: eb91ac16b2f23dbc2934b7afbc46916c76904df8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2013 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

namespace Swift {

	class BlockListEditorWidget;

	class BlockListEditorWidgetFactory {
		public:
			virtual ~BlockListEditorWidgetFactory() {}

			virtual BlockListEditorWidget* createBlockListEditorWidget() = 0;
	};

}