aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/modeleditor/modeleditorfactory.h
blob: 0fa4d7e0ae8461a4118fd232426ddb4b69aef8a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <coreplugin/editormanager/ieditorfactory.h>

namespace ModelEditor {
namespace Internal {

class ActionHandler;
class ModelEditor;
class UiController;

class ModelEditorFactory : public Core::IEditorFactory
{
public:
    ModelEditorFactory(UiController *uiController, ActionHandler *actionHandler);
};

} // namespace Internal
} // namespace ModelEditor