2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2010-03-30 12:11:32 +02:00
|
|
|
|
2016-01-27 10:14:00 +01:00
|
|
|
#pragma once
|
2010-03-30 12:11:32 +02:00
|
|
|
|
2014-09-26 09:14:03 +02:00
|
|
|
#include <texteditor/texteditor.h>
|
2010-03-30 12:11:32 +02:00
|
|
|
|
2022-09-29 15:26:31 +02:00
|
|
|
namespace CMakeProjectManager::Internal {
|
2010-03-30 12:11:32 +02:00
|
|
|
|
2014-09-26 11:37:54 +02:00
|
|
|
class CMakeEditorFactory : public TextEditor::TextEditorFactory
|
2014-08-20 00:07:43 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2015-02-04 17:54:46 +01:00
|
|
|
CMakeEditorFactory();
|
2014-08-20 00:07:43 +02:00
|
|
|
};
|
|
|
|
|
|
2022-09-29 15:26:31 +02:00
|
|
|
} // CMakeProjectManager::Internal
|