mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
17 lines
222 B
C++
17 lines
222 B
C++
#ifndef WIDGETTOOLS_H
|
|
#define WIDGETTOOLS_H
|
|
|
|
#include <QWidget>
|
|
|
|
class WidgetTools
|
|
{
|
|
public:
|
|
WidgetTools();
|
|
|
|
public:
|
|
static void closeAllChildWidgets(QWidget* parent, QString objName);
|
|
|
|
};
|
|
|
|
#endif // WIDGETTOOLS_H
|