1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 |
3 | |
4 | #ifndef MSVC_VCXPROJ_H |
5 | #define MSVC_VCXPROJ_H |
6 | |
7 | #include "msvc_vcproj.h" |
8 | |
9 | QT_BEGIN_NAMESPACE |
10 | |
11 | class VcxprojGenerator : public VcprojGenerator |
12 | { |
13 | public: |
14 | VcxprojGenerator(); |
15 | |
16 | protected: |
17 | VCProjectWriter *createProjectWriter() override; |
18 | }; |
19 | |
20 | QT_END_NAMESPACE |
21 | |
22 | #endif // MSVC_VCXPROJ_H |
23 |