Files
CMake/Tests/QtAutogen/UicInterface/mywidget.h
Kitware Robot ed98209ddc Revise include order using clang-format-6.0
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.
2019-10-01 12:26:36 -04:00

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