20 lines
300 B
C++
20 lines
300 B
C++
//
|
|
// Created by selim on 15.11.22.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_SEPARATOR_H
|
|
#define AUTOCAT_GNOME_SEPARATOR_H
|
|
|
|
#include "Widget.h"
|
|
|
|
namespace gtkpp {
|
|
|
|
class Separator: public Widget {
|
|
public:
|
|
explicit Separator(GtkOrientation orientation);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //AUTOCAT_GNOME_SEPARATOR_H
|