forked from qt-creator/qt-creator
This is still an overall quirky setup. Change-Id: I7c1d22267bb76d434fe2f9b77ed8d0bfef5ac952 Reviewed-by: Cristian Adam <cristian.adam@qt.io>
18 lines
352 B
C++
18 lines
352 B
C++
// Copyright (C) 2016 Lorenz Haas
|
|
// Copyright (C) 2022 Xavier BESSON
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
namespace Core { class IDocument; }
|
|
|
|
namespace CMakeProjectManager::Internal {
|
|
|
|
class CMakeFormatter
|
|
{
|
|
public:
|
|
CMakeFormatter();
|
|
};
|
|
|
|
} // CMakeProjectManager::Internal
|