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

#pragma once

namespace Swift {

	class HighlightEditorWidget;

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

			virtual HighlightEditorWidget* createHighlightEditorWidget() = 0;
	};

}