blob: 7195ee4dce4fe2233a7b8cd6be6bc34a68807498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include <projectexplorer/buildstep.h>
namespace Nim {
class NimbleTaskStepFactory final : public ProjectExplorer::BuildStepFactory
{
public:
NimbleTaskStepFactory();
};
} // Nim
|