mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-27 17:10:43 -06:00
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
27 lines
339 B
C++
27 lines
339 B
C++
|
|
#ifndef MYWIDGET_H
|
|
#define MYWIDGET_H
|
|
|
|
#include <memory>
|
|
|
|
#include <QWidget>
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 3, 0)
|
|
# include <klocalizedstring.h>
|
|
#endif
|
|
|
|
#include "ui_mywidget.h"
|
|
|
|
class MyWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MyWidget(QWidget* parent = 0);
|
|
~MyWidget();
|
|
|
|
private:
|
|
Ui::MyWidget* ui;
|
|
};
|
|
|
|
#endif
|