summaryrefslogtreecommitdiffstats
blob: 05e7f3a7444c61fc31b01cc6890ba110732de4b6 (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;
    };

}