20 lines
264 B
C++
20 lines
264 B
C++
//
|
|
// Created by selim on 17.05.2022.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_DIALOG_H
|
|
#define AUTOCAT_GNOME_DIALOG_H
|
|
|
|
#include "Window.h"
|
|
|
|
namespace gtkpp {
|
|
|
|
class Dialog: public Window {
|
|
public:
|
|
using Window::Window;
|
|
};
|
|
|
|
}
|
|
|
|
#endif //AUTOCAT_GNOME_DIALOG_H
|