* removed paths in include directives * changed cmake to provide necessary header search paths * changed name of version.h to productVersion.h due to name conflict
21 lines
421 B
C++
21 lines
421 B
C++
#ifndef QT_PROJECT_WIZZARD_CONTENT_VS_H
|
|
#define QT_PROJECT_WIZZARD_CONTENT_VS_H
|
|
|
|
#include "QtProjectWizzardContent.h"
|
|
|
|
class QtProjectWizzardContentVS
|
|
: public QtProjectWizzardContent
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtProjectWizzardContentVS(QtProjectWizzardWindow* window);
|
|
|
|
virtual void populate(QGridLayout* layout, int& row) override;
|
|
|
|
private slots:
|
|
void handleVSCDBClicked();
|
|
};
|
|
|
|
#endif // QT_PROJECT_WIZZARD_CONTENT_VS_H
|