17 lines
302 B
C++
17 lines
302 B
C++
//
|
|
// Created by selim on 17.05.2022.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_ADDNUMBERDIALOG_H
|
|
#define AUTOCAT_GNOME_ADDNUMBERDIALOG_H
|
|
|
|
#include "../gtkpp/Window.h"
|
|
|
|
class AddNumberDialog: public gtkpp::Window {
|
|
public:
|
|
explicit AddNumberDialog(GtkWindow* parent);
|
|
};
|
|
|
|
|
|
#endif //AUTOCAT_GNOME_ADDNUMBERDIALOG_H
|